Hallo ihr PC-Specialists!
Hab bei meinem Quellcode ein Problem: Ich könnte mit diesem Quellcode aus der benannten book.txt lesen, aber ich kann nicht hineinschreiben! Sobald ich statt ForReading ForWriting oder ForAppending eingebe, kann der Browser die Seite nicht mehr anzeigen!
<%
name = request.querystring("Name")
subject = request.querystring("Subject")
comment = request.querystring("Comment")
CONST conSourcePath = "book.txt"
CONST ForAppending = 8
text = DATE & "#" & TIME & "#" & name & "#" & subject & "#" & comment
ExistFile = conSourcePath
strPhysExistFile = Server.MapPath(Existfile)
SET FO=Server.CreateObject("Scripting.FileSystemObject")
SET BookFile = FO.OpenTextFile(strPhysExistFile, 2, False)
Bookfile.writeln(text)
Bookfile.Close
%>
Hoffe ihr könnt mir helfen!