且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

登录后如何获取用户访问的页面的所有URL,我们可以使用户在该页面上执行操作

更新时间:2023-12-01 19:04:34

请参考以下主题:

跟踪Web应用程序中的用户活动:跟踪用户活动 [数据库中的ASP.Net用户活动跟踪 [
Please refer following threads:

Tracking user activity in web applications:Tracking User Activity[^]
ASP.Net User activity tracking in database[^]


要跟踪访问的页面,我将使用自定义HttpModule,因此每个请求都将通过它.在模块内部,您可以识别用户并记录他正在访问的URL.

跟踪用户执行的所有动作可能非常复杂.有多种方法可以实现此目标,具体取决于您的实际需求.
To track visited pages I would use custom HttpModule, so every request would pass through it. Inside the module you can identify the user and log the url he''s visiting.

Tracking all the actions user performs can be very complicated. There are many ways to achieve this, depending on what you really need.