ASP 和 C# 中特定的点击计数机制
如果您使用链接到 .cs 文件的 .aspx 文件(该文件从 SQL 服务器获取标题,而不使用外部文本文件通过读入和读出来跟踪),那么在 HTML 中显示点击计数器的好方法是什么?我真的不想使用 javascript,因为我想将它与特定的 ID 相关联。
What is a good way to display a click counter in HTML, if you are using a .aspx file that links to a .cs file which obtains headings from a SQL server without using an external text file to keep track by reading in and out? I'd really rather not use javascript because I want to associate it with a specific ID.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将需要某种持久存储来随着时间的推移进行跟踪。因此,要么是文本文件,要么将每次点击记录到数据库表中。
you'll need some sort of persistent storage to keep track over time. So either a text file, or recording each click to a database table.