神东煤炭分公司,万利煤炭分公司 ,金峰煤炭分公司 ,神东煤炭公司合并成为: |
联系:QQ:904406757,邮箱:rsr361@163.com
<%
'一个简单的网页计数器
Set fs=CreateObject("Scripting.FileSystemObject")
Set a=fs.openTextFile(server.mappath("count.txt"))
count=a.readline
response.write " " & count
count=count+1
Set fs=CreateObject("Scripting.FileSystemObject")
Set a=fs.createTextfile(server.mappath("count.txt"))
a.writeline(count)
%>
|