|
|
|
|
|
| | |
| |
Active Server Pages what is asp programming how to sample asp example code scripts software asp forum mail sessions applications global.asa CJWSoft ASPProtect ASPBanner ASPClassifieds
(Advanced)
(Components)
(Database)
(General)
(Vbscript)

|
|
|
|
Subject: |
Re: Server object error ASP 0177 : 800a004c w/ OpenTextFile |
|
From: |
Tim |
|
Date: |
9/20/1999 8:02:26 AM |
|
IP: |
207.51.162.13 |
Dim fs, a
Set fs = CreateObject("Scripting.FileSystemObject")
Set a = fs.OpenTextFile(Server.MapPath("YourTextFile.txt")
While a.AtEndOfStream = False
NextLine = a.ReadLine
Response.Write(NextLine & "<br>")
Wend
a.Close
|
Previous Message
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|