当前位置: 移动技术网 > IT编程>开发语言>其他编程 > 如何让计数器只对新进用户计数?

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

2017年12月08日  | 移动技术网IT编程  | 我要评论

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

<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]

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网