Save and load file on webserver.

Hi,

I'm migrating a VCL Delphi application to an TMS Web application. I need to save and load a file on/from the web server automatically. So no user action should be needed. I cannot figure out how to do this with the TMS Web components. Any help is appreciated.

With regards,

Paul Poels

Loading is easy and depending on the file type, there are different options. The most generic solution is to do this with a TWebHTTPRequest.
To save the file, this depends on the web server you are using. If via a HTTP POST this file could be write-able, then you could use also a TWebHTTPRequest to save the file.