下边的这个是我在网上找的一段代码,,,很悲催,不知道怎么用,我的情况是:想在后台显示一下每日访问数量,仅此而已,谢谢求解答(具体我不知道哦count.txt放在哪,是不是就建一个txt格式的文件就行了,,,server.Mappath("count.txt")这怎么弄)
<%
dim count
Set fs=CreateObject("scripting.filesystemobject")
Set hs=fs.opentextfile(server.Mappath("count.txt"))
count=hs.readline
if session("iscount")="" then
session("iscount")="iscount"
count=count+1
end if
response.write "您是第" & count & "位访问者!"
Set hs=fs.createtextfile(server.Mappath("count.txt"))
hs.writeline(count)
hs.close
set fs=nothing
%>
=================gh027soft======================================
count.txt 就是计数的文件
根目录下么
啥意思?
@觉信: 网站根目录下