Asp + Iis

Z

zatrix

Guest
I installed me self the XP IIS. And well it works fine except that when i try to access a file using an ASP page it just freezes and the page never loads. Yes i have enabled the write, read, etc properties. Below is the code i try to use:
Code:
<%Option Explicit
' Set up Constants
Const ForWriting = 2   ' Input OutPut mode
Const Create = True    

' Dimension local variables
Dim MyFile                       
Dim FSO          ' FileSystemObject
Dim TSO          ' TextStreamObject

' always use MapPath function to get the Physical Path of file
MyFile = Server.MapPath("textfile.txt")
Set FSO = Server.CreateObject("Scripting.FileSystemObject")
Set TSO = FSO.OpenTextFile(MyFile, ForWriting, Create)
TSO.write "This is first line in this text File" & vbcrlf      
' Vbcrlf is next line character
TSO.write "This is Second line in this text file" & vbcrlf
' Now Function will write local time
TSO.write "Writen by devasp visitor at " & Now()            
TSO.WriteLine ""

Response.Write " Three lines are writen to textfile.txt <br>"
Response.Write " Local time at server is "  & Now()

' close TextStreamObject and 
' destroy local variables to relase memory
TSO.close
Set TSO = Nothing
Set FSO = Nothing
%>

And well...u guys got any ideas?
 
try

cut out the line

MyFile = Server.MapPath("textfile.txt")

and just put the path of the file in the open command
ie

Set TSO = FSO.OpenTextFile("c:\whatever\textfile.txt", ForWriting, Create)

also try replaceing Set TSO = FSO.OpenTextFile(MyFile, ForWriting, Create)
with

Set TSO = FSO.OpenTextFile(c:\whatever\textfile.txt", 8, True)

do you know the line its crashing on? if not just put response.end after the first few lines then see if it freezes, if not move it a few lines and so on so you can find the exact line
 
thanx i'll try that.

But i believe the problem came from:

Set TSO = FSO.OpenTextFile(MyFile, ForWriting, Create)

....
 

Members online

No members online now.

Latest profile posts

Also Hi EP and people. I found this place again while looking through a oooollllllldddd backup. I have filled over 10TB and was looking at my collection of antiques. Any bids on the 500Mhz Win 95 fix?
Any of the SP crew still out there?
Xie wrote on Electronic Punk's profile.
Impressed you have kept this alive this long EP! So many sites have come and gone. :(

Just did some crude math and I apparently joined almost 18yrs ago, how is that possible???
hello peeps... is been some time since i last came here.
Electronic Punk wrote on Sazar's profile.
Rest in peace my friend, been trying to find you and finally did in the worst way imaginable.

Forum statistics

Threads
62,015
Messages
673,494
Members
5,621
Latest member
naeemsafi
Back