NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started 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
-
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]
-
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')
-
Thanks Guys!!!! That did it, works like a charm.
ashley Stahl