Hi,
Thanx. I got it. I wonder.
And, How can i save this textarea data to client system as a textfile.
I am using filesystemobject to create a text file with the path
set fso=server.createObject("scripting.filesystemobjec t")
set ctext=fso.createtextfile("c:\mydata.txt",true)
ctext.close
set ctext=nothing
set fso=nothing
But it is storing in the server c:
My users will access simultaneously in my LAN. They use these textfiles to print in DOS mode. Coz it contains large data and to print faster.
How can i store the generated output to the client system only instead of server.
|