我是靠谱客的博主 鲜艳斑马,这篇文章主要介绍如何让计数器只对新进用户计数?,现在分享给大家,希望可以做个参考。

如何让计数器只对新进用户计数?

<script language=vbscript runat=server>

sub application_onstart

filepath=server.mappath("/count")

filename=filepath+"\counter.txt"

set fs=createobject("scripting.filesystemobject")

if not fs.fileexists(filename) then

  fs.createtextfile(filename)

    set f=fs.getfile(filename)

           s=1

Set ts = f.OpenAsTextStream(2, -2)

ts.writeline(cstr(s))

ts.close

          else

    set f=fs.getfile(filename)

    Set ts = f.OpenAsTextStream(1, -2)

    s=ts.readline+1

    ts.close

end if

application(“visitor”)=s

end sub

 

sub session_onstart

session.timeout=5

application("visitor ")=application("visitor ")+1

set f=fs.getfile(filename)

     Set ts = f.OpenAsTextStream(2, -2)

 

ts.writeline (cstr(application("visitor ")))

ts.close

end sub

</script>

<%

s=cstr(application("visitor")+10^6)

s=mid(s,2,6)

for i=1 to 6

   response.write "<img src='flashdays/liyanbing/images/"

&mid(s,i,1)&".gif' width='18' height='25'>"

next

%>

[1]

最后

以上就是鲜艳斑马最近收集整理的关于如何让计数器只对新进用户计数?的全部内容,更多相关如何让计数器只对新进用户计数内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(226)

评论列表共有 0 条评论

立即
投稿
返回
顶部