dim f2
'dim ts
Set f2 = fso.GetFile("w:\boseo\" & strFile)
Set ts = f2.OpenAsTextStream(1,-2)
do while ts.AtEndOfStream = False
Response.Write ts.ReadLine & "<BR>"
'(how can i collect the vaues from the file and put them in the right order? How can i create a variable to store all the data in and then i can just call that variable later?)
loop
--------------------------------
how can i collect the vaues from the file and put them in the right order?
How can i create a variable to store all the data in and then i can just call that variable later?
'dim ts
Set f2 = fso.GetFile("w:\boseo\" & strFile)
Set ts = f2.OpenAsTextStream(1,-2)
do while ts.AtEndOfStream = False
Response.Write ts.ReadLine & "<BR>"
'(how can i collect the vaues from the file and put them in the right order? How can i create a variable to store all the data in and then i can just call that variable later?)
loop
--------------------------------
how can i collect the vaues from the file and put them in the right order?
How can i create a variable to store all the data in and then i can just call that variable later?