Hello,
I dynamically create a html file through my asp webpage. I then want to save this page in a directory called "temp". Now, locally it works fine, I just use
How will I do this on my hosts server. They said I cannot use the string above, but must save it in my webspace.Code:set fso = createobject("scripting.FileSystemObject") set tf = fso.CreateTextFile("c:\temp\TestQuote.html",true)
All my files lie in "\myweb" on my hosts server.
Will I then do it like this....
Are all the "\" and " etc etc there??Code:set fso = createobject("scripting.FileSystemObject") set tf = fso.CreateTextFile("\myweb\temp\testquote.htmll",true)
Any help please.
Thanks,
T




Reply With Quote