ASP.NET 会员活动日志

发布于 2024-10-10 04:42:46 字数 107 浏览 3 评论 0原文

我正在寻找一种简单的方法来跟踪支持 ASP.NET 会员资格的网站的用户活动。我想看看谁在访问哪些页面、何时访问、每个页面的总访问量等。

是否有任何开放的免费解决方案或一个很好的例子?

I am looking for a simple way to track user activity of an asp.net membership enabled site. I would like to see who is accessing what pages and when, total visits for each page, etc.

Are there any open free solutions out there or a good example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

朕就是辣么酷 2024-10-17 04:42:46

查看这篇文章:跟踪用户活动

来自文章:

许多 ASP.NET Web 应用程序支持用户帐户,使访问者能够创建帐户并登录网站。只需一点点努力,您就可以跟踪登录用户的活动。这可以包括记录活动,例如访问了哪些页面以及执行了哪些操作。考虑一个允许用户管理其个人资料的页面。首次到达此页面时,活动日志可能会添加一个条目,例如“访问用户个人资料页面”。更新他的电子邮件地址后,活动日志可能会记录“已更改电子邮件地址 [电子邮件受保护][电子邮件受保护]。”与日志文件或在线访客统计工具相比,这种使用情况跟踪提供了更深层次的分析。用户活动跟踪可以提供非常详细的视图,了解特定个人如何使用应用程序以及他在登录网站时执行的操作,而不是报告访问者总数或普通用户如何与网站交互的数据.

本文研究如何在数据库表中记录用户的活动并在网页中显示此信息。可以下载一个完整、有效的演示应用程序,展示这些技术的实际应用。

Check out this article: Tracking User Activity.

From the article:

Many ASP.NET web applications support user accounts, enabling visitors to create an account and sign in to the site. With a little bit of effort you can track the activity of your logged on users. This can include recording activities such as what pages were visited as well as what actions were performed. Consider a page that allows a user to manage his profile. When first arriving at this page the activity log might add an entry like "Visiting the User Profile page." After updating his e-mail address, the activity log might record, "Changed e-mail address from [email protected] to [email protected]." Such usage tracking offers a deeper level of analysis than is possible with log files or online visitor statistic tools. Instead of data that report total number of visitors or how the average user is interacting with the site, user activity tracking can provide a very detailed view of how a particular individual is using the application and what actions he is performing while signed on to the site.

This article examines how to record your users' activities in a database table and display this information in a web page. A complete, working demo application that shows these techniques in action is available for download.

十秒萌定你 2024-10-17 04:42:46

不确定这是否是您正在寻找的内容,但这可能是一个开始:

使用 HttpModule 跟踪您的访问者

Not sure if this is what you're looking for, but it might be a start:

Track your visitors using an HttpModule

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文