HttpApplication 和当前页面

发布于 2024-12-04 12:45:27 字数 128 浏览 0 评论 0原文

众所周知,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 技术交流群。

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

发布评论

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

评论(2

单挑你×的.吻 2024-12-11 12:45:28

您想要检查 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.

辞慾 2024-12-11 12:45:28

您需要使用 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

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