poky
11-10-2002, 04:15 PM
hEllO all, I can not creat my counter page. I have 3 files on File Manager to creat a ASP counter file, but it doesn't work.
First , is the file counter.asp with its content :
<%
%>
<html>
<head>
<title>Hit Counter</title>
</head>
<body>
<%
Dim fsoObject 'File System Object
Dim tsObject 'Text Stream Object
Dim filObject 'File Object
Dim lngVisitorNumber 'Holds the visitor number
Dim intWriteDigitLoopCount 'Loop counter to display the graphical hit count
Set fsoObject = Server.CreateObject("Scripting.FileSystemObject")
Set filObject = fsoObject.GetFile(Server.MapPath("hit_count.txt"))
Set tsObject = filObject.OpenAsTextStream
lngVisitorNumber = CLng(tsObject.ReadAll)
lngVisitorNumber = lngVisitorNumber + 1
Set tsObject = fsoObject.CreateTextFile(Server.MapPath("hit_count.txt"))
tsObject.Write CStr(lngVisitorNumber)
Set fsoObject = Nothing
Set tsObject = Nothing
Set filObject = Nothing
Response.Write(lngVisitorNumber)
%>
</body>
</html>
Second , is hit_counter.txt with this content
1
Third, is my index.htm with this content
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Fantastic website </title>
</head>
<body>
<body bgcolor="#FFFFFF">
<p align="center"><img src="leftheart.gif" width="56" height="54"><font
color="#8000FF" size="5" face="Verdana"><marquee width="75%">Fantastic web - Designed and created by Han Nhi</marquee></font><img
src="rightheart.gif" width="58" height="54"></p>
<p align="center"> </p>
<table border="0">
<tr>
<td colspan="40"
<p><a href="http://hannhi.topcities.com/guestbook.html"><img
src="heart.gif" alt="Loving Box" border="0" width="17"
height="16"></a><font face="Verdana"> </font><a
href="http://hannhi.topcities.com/guestbook.html"><font
face="Verdana">Loving Box</font></a><font face="Verdana">
</font></p>
<p><font color="#FF0000"><strong>»»»» </strong></font></p>
<p><font color="#804040" face="Verdana"><strong>Pls show
me ur idea by signin' in this part :) Thanks</strong></font></p>
</tr>
</table>
<p align="center"><font face="Tahoma">Contact me : </font><a
href="mailto:hannhi@mail2honey.com"><font color="#0000FF"
face="Tahoma"><u>hannhi@mail2honey.com</u></font></a></p>
<p align="center"><font color="#0000FF" face="Tahoma">There are <!--#INCLUDE FILE="counter.asp" --> visiters</font></p>
</body>
</body>
</html>
That's all. But My counter visiters doesn't work, anyone tell me why ??
First , is the file counter.asp with its content :
<%
%>
<html>
<head>
<title>Hit Counter</title>
</head>
<body>
<%
Dim fsoObject 'File System Object
Dim tsObject 'Text Stream Object
Dim filObject 'File Object
Dim lngVisitorNumber 'Holds the visitor number
Dim intWriteDigitLoopCount 'Loop counter to display the graphical hit count
Set fsoObject = Server.CreateObject("Scripting.FileSystemObject")
Set filObject = fsoObject.GetFile(Server.MapPath("hit_count.txt"))
Set tsObject = filObject.OpenAsTextStream
lngVisitorNumber = CLng(tsObject.ReadAll)
lngVisitorNumber = lngVisitorNumber + 1
Set tsObject = fsoObject.CreateTextFile(Server.MapPath("hit_count.txt"))
tsObject.Write CStr(lngVisitorNumber)
Set fsoObject = Nothing
Set tsObject = Nothing
Set filObject = Nothing
Response.Write(lngVisitorNumber)
%>
</body>
</html>
Second , is hit_counter.txt with this content
1
Third, is my index.htm with this content
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Fantastic website </title>
</head>
<body>
<body bgcolor="#FFFFFF">
<p align="center"><img src="leftheart.gif" width="56" height="54"><font
color="#8000FF" size="5" face="Verdana"><marquee width="75%">Fantastic web - Designed and created by Han Nhi</marquee></font><img
src="rightheart.gif" width="58" height="54"></p>
<p align="center"> </p>
<table border="0">
<tr>
<td colspan="40"
<p><a href="http://hannhi.topcities.com/guestbook.html"><img
src="heart.gif" alt="Loving Box" border="0" width="17"
height="16"></a><font face="Verdana"> </font><a
href="http://hannhi.topcities.com/guestbook.html"><font
face="Verdana">Loving Box</font></a><font face="Verdana">
</font></p>
<p><font color="#FF0000"><strong>»»»» </strong></font></p>
<p><font color="#804040" face="Verdana"><strong>Pls show
me ur idea by signin' in this part :) Thanks</strong></font></p>
</tr>
</table>
<p align="center"><font face="Tahoma">Contact me : </font><a
href="mailto:hannhi@mail2honey.com"><font color="#0000FF"
face="Tahoma"><u>hannhi@mail2honey.com</u></font></a></p>
<p align="center"><font color="#0000FF" face="Tahoma">There are <!--#INCLUDE FILE="counter.asp" --> visiters</font></p>
</body>
</body>
</html>
That's all. But My counter visiters doesn't work, anyone tell me why ??