使用 global.asax 记录页面访问
我在网站上记录使用情况,只需记录会话何时开始和结束,然后在会话结束时将其发布到数据库。 但现在,我对更多细节感兴趣。准确地说,我想知道人们访问了哪些页面。 我可以在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
谷歌分析是最好的方法。
另外,您可以使用 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 theHttpContext
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