ASP Question!!!
Question for ASP Experts out there:Write text to a file on the user's drive instead of webserver's.
Currently I have:
------------
Set fs = CreateObject("Scripting.FileSystemObject")
Set wfile = fs.CreateTextFile("c:\test\"&sBOUserName&".txt", True)
wfile.Write "Text I want to write a file"
---------------
But the above only writes to the C: drive on the webserver. Instead I want for it to write to a C: drive on the user's computer. How would I do this?