NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: astahl on August 09, 2010, 06:24:38 AM

Title: Dynamic folder names for file upload
Post by: astahl on August 09, 2010, 06:24:38 AM
In my forms I have a unique record number(Job Number) which I want to use as the folder name ie "uploads\123456\".
How do I get that number from a webform to the webhandler when I press the save button, so I can use it?

Ashley Stahl
Title: Re: Dynamic folder names for file upload
Post by: Alberto on August 09, 2010, 12:04:16 PM
Hi Ashley,

WebHandler proc, RenameFile, after the parent call.
See attached image.
The code is something like:

  self.site.UploadsPath = clip(self.site.WebFolderPath) & '\uploads\MyNewFolder'




[attachment deleted by admin]
Title: Re: Dynamic folder names for file upload
Post by: kevin plummer on August 09, 2010, 02:43:31 PM

How do I get that number from a webform to the webhandler when I press the save button, so I can use it?

> in your form add it to the session Q eg p_web.ssv('JobNumberFolder',job:jobnumber)

> in the web handler self.site.UploadsPath = clip(self.site.WebFolderPath) & self.gsv('JobNumberFolder')
Title: Re: Dynamic folder names for file upload
Post by: astahl on August 10, 2010, 05:14:26 AM
Thanks Guys!!!! That did it, works like a charm.


ashley Stahl