[thelist] ASP + fileSystemObject + IIS5

Ken Kogler thelist at lists.evolt.org
Sun Sep 8 17:40:01 2002


> Set newXML = fs.CreateTextFile
> ("http://localhost/dev/client/asp/xml/timetable.xml", true)

Try making that:

> Set newXML = fs.CreateTextFile
> (server.mapPath("/dev/client/asp/xml/timetable.xml")", true)

I'm not sure you can pass a file via http like you were trying to do.

HTH!
--Ken