In ASP, does the FileSystemObject work with files on the user visiting the page, or the server the page is on?
Printable View
In ASP, does the FileSystemObject work with files on the user visiting the page, or the server the page is on?
It depends....if you put it into a client event (like button_onclick) then it will be executed on the client....if you put it in your ASP code, then it will be executed on the server
So if I wanted to access a file on a server, would I just use a URL to the location of the file I wanted to edit?