asp如何实现点击数的计算?

时间:2010-05-18 18:39:00 

如下:
counter.htm

<a href=counter.asp?save=123&url=http://127.0.0.1/>http://127.0.0.1</a> 
共点击次数:<script src=view.asp?save=123></script> 

counter.asp

<% 
path="d:data" 
file=request("save") 
url=request("url") 
Set fs = CreateObject("Scripting.FileSystemObject") 
if fs.FileExists(path & file & ".txt") then 
Set thisfile = fs.OpenTextFile(path & file & ".txt", 1, False) 
number=thisfile.readline + 1 
thisfile.Close 
Set outfile=fs.CreateTextFile(path & file & ".txt") 
outfile.WriteLine number 
outfile.close 
set fs=nothing 
else 
number=1 
Set outfile=fs.CreateTextFile(path & file & ".txt") 
outfile.WriteLine number 
outfile.close 
set fs=nothing 
end if 
response.redirect url 
%> 
view.asp
<% 
path="d:data" 
file=request("save") 
Set fs = CreateObject("Scripting.FileSystemObject") 
if fs.FileExists(path & file & ".txt") then 
Set thisfile = fs.OpenTextFile(path & file & ".txt", 1, False) 
number=thisfile.readline 
thisfile.Close 
set fs=nothing 
else 
number=0 
end if 
response.contenttype = "application/x-javascript" 
response.write "document.write(""" & number & """);" 
%>

标签:点击数,asp
0
投稿

猜你喜欢

  • 详解python uiautomator2 watcher的使用方法

    2022-03-04 07:31:23
  • javascript实现锁定网页、密码解锁效果(类似系统屏幕保护效果)

    2023-08-18 20:01:36
  • Javascript中的函数声明与函数表达式(奇技淫巧)

    2024-04-23 09:08:43
  • Python编程实现简易的音乐播放器基本操作

    2022-05-25 08:41:16
  • Python3 使用pip安装git并获取Yahoo金融数据的操作

    2023-11-17 21:56:48
  • JavaScript 应用技巧集合[推荐]

    2024-05-03 15:06:09
  • python SVM 线性分类模型的实现

    2021-04-04 03:51:57
  • python使用thrift教程的方法示例

    2022-03-14 04:29:02
  • TensorFlow低版本代码自动升级为1.0版本

    2023-08-12 02:02:24
  • 自动定时备份sqlserver数据库的方法

    2024-01-13 20:45:14
  • 在线HTML编辑器原理(eweb原理)

    2009-01-08 12:25:00
  • 解决Microsoft VBScript 运行时错误 (0x800A0046) 没有权限的解决方案

    2009-09-03 13:28:00
  • 基于pako.js实现gzip的压缩和解压功能示例

    2024-04-22 22:14:41
  • 又一款MVVM组件 构建自己的Vue组件(2)

    2024-04-30 10:46:40
  • 在SQL Server 2008中安装安全审计

    2009-02-24 17:22:00
  • python中wordcloud安装的方法小结

    2022-07-11 04:29:44
  • Python函数命名空间,作用域LEGB及Global详析

    2022-09-18 18:14:16
  • flask框架实现连接sqlite3数据库的方法分析

    2024-01-21 08:52:38
  • 如何设置mysql允许外网访问

    2024-05-03 15:49:38
  • 使用Python的Flask框架构建大型Web应用程序的结构示例

    2022-05-01 01:35:35
  • asp之家 网络编程 m.aspxhome.com