使用 global.asax 记录页面访问

发布于 2024-12-04 09:58:17 字数 153 浏览 0 评论 0原文

我在网站上记录使用情况,只需记录会话何时开始和结束,然后在会话结束时将其发布到数据库。 但现在,我对更多细节感兴趣。准确地说,我想知道人们访问了哪些页面。 我可以在 global.asax 中以某种方式执行此操作吗?我应该做一个处理程序吗? 我真正想避免的是在我的所有页面上添加日志记录代码。

I log usage on my site, by simply recording when a sessions starts and ends, and then posting it to a database, when it ends.
But now, I am interested in abit more details. To be precise, I would like to know which pages, people visit.
Can I do this in global.asax somehow? Should I make a handler instead?
What I really want to avoid, is adding logging code, on all my pages.

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

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

发布评论

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

评论(1

月依秋水 2024-12-11 09:58:17

谷歌分析是最好的方法。

另外,您可以使用 Global.asax BeginRequest 事件。在这里您可以找到 HttpContext 以及所请求包的可能 url。

此外,作为一个选项,您可以使用:

  • HttpModules

  • 所有页面的基页,并在加载事件上处理日志数据,例如

Google Analytics is the best way here.

Also, you can use Global.asax BeginRequest event. Here you can find the HttpContext and probably url of the requested bage.

Also, as an option, you can use:

  • HttpModules

  • Base page for all of your pages, and hadle log data on Load event for example

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