HttpApplication 和当前页面
众所周知,HttpApplication 对象保存有关请求页面 (HttpRequest) 和我们应该重定向的页面 (HttpResponse) 的对象;我需要获取请求该页面的页面的 url;我如何从 HttpApplication 获取它?
As we all know the HttpApplication object holds objects regarding the requested page (HttpRequest) and the page where we are supposed to be redirected (HttpResponse); I need to get the url of the page which requested the page; how could I get it from the HttpApplication ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要检查 url 引用标头,如下所示:
string MyReferrer = Request.UrlReferrer.ToString();
然而,该值是由浏览器设置的 - 因此从安全角度来看不能完全信任。
You want to check the url referrer header like so:
string MyReferrer = Request.UrlReferrer.ToString();
This value is set by the browser however - so can't exactly be trusted from a security viewpoint.
您需要使用 HttpRequest.UrlReferrer 属性,请参阅 - http: //msdn.microsoft.com/en-us/library/system.web.httprequest.urlreferrer.aspx
You need to use the HttpRequest.UrlReferrer property see - http://msdn.microsoft.com/en-us/library/system.web.httprequest.urlreferrer.aspx