hello, can u help me?
my prob is, this message appear whrn i want to view my file
Error Type:
Microsoft VBScript runtime (0x800A01B6)
Object doesn't support this property or method: 'opentextfile'
/menu.asp
my coding as i state like this:
<%
set fso = createobject("scripting.filesystemobject")
set act = fso.opentextfile(server.mappath("aspcount.txt"))
counter = clng(act.readline)
if session("been_here_before") = "" then
session("been_here_before") = "Yes"
counter = counter + 1
Set act = fso.CreateTextFile(server.mappath("aspcount.txt"), true)
act.WriteLine(counter)
end if
act.Close
Response.Write counter
%>
tq!