Stream|stream a few days ago to write a thing inside useful to read the file.
But I do not want to use FSO, I am afraid of some space does not support.
But the network looked for a long time did not find a not to use FSO to write.
Or did one of their own.
I remember I used to use the stream when I did no component uploads and saved files.
I found that there was a LoadFromFile method. can read files.
Here's my Code.
function ReadFile (url,chartype)
Set srmobj = Server. CreateObject ("ADODB.stream")
Srmobj.type=1
Srmobj.mode=3
Srmobj.open
Srmobj.position=0
Srmobj.loadfromfile URL
srmobj.position = 0
srmobj.type=2
Srmobj.charset=chartype
Readfile=srmobj.readtext ()
End Function
Two parameters. A URL is a path to a file, as if only an absolute path. Chartype is what code the file is stored in.
Returns a string that holds the contents of the file.
This function can only read text files. Reading binary files is similar. The people who want to use it can change their own