不用后台数据库可不可以统计网站日访问量?asp代码怎么写?
可不可以用脚本写统计代码,不用访问数据库的?只需要知道每天访问网站的人数。代码越简单些越好,急求~!~!谢谢~!...
可不可以用脚本写统计代码,不用访问数据库的?只需要知道每天访问网站的人数。代码越简单些越好,急求~!~!谢谢~!
展开
展开全部
可以啊 ,用文本就可以啊,代码如下:
======================gh027soft====================================
<%
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 就是计数的文件
谢谢!
======================gh027soft====================================
<%
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 就是计数的文件
谢谢!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询