Frågan#1
Varför funkar inte följande rader? blir galen :D
<html>
<head>
<title>Emailaddresses</title>
</head>
<body bgcolor="#ffffff" text="#000000">
<h1>Emailaddresses</h1>
<%
Dim textfile
textfile = "data/save.txt"
Set fObj = Server.CreateObject("Scripting.FileSystemObject")
Set openFile = fObj.OpenTextFile(Server.MapPath(textfile),1)
Do Until openFile.AtEndOfStream
Response.Write(openFile.ReadLine & "<br>")
Loop
openFile.Close
Set openFile = Nothing
Set fObj = Nothing
%>
</body>
</html>
