HttpModule 中的 Request.Url 和 ReferrerUrl

发布于 2024-10-31 15:28:16 字数 234 浏览 1 评论 0原文

我们在 httpmodule 中找到 HttpContext.Current.Request.Url.ToString()HttpContext.Current.Request.UrlReferrer.ToString() 值>。从正常页面加载中获取值有什么区别吗?

假设如果请求来自谷歌搜索结果,那么这两个值的输出是什么。

We are finding HttpContext.Current.Request.Url.ToString() and HttpContext.Current.Request.UrlReferrer.ToString() values in an httpmodule. Is there any difference in getting the values from the normal page load?

Suppose if the request is coming from a google search result, then what will be the output of those two values.

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

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

发布评论

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

评论(2

听不够的曲调 2024-11-07 15:28:16

HttpContext.Current.Request.Url 指向服务器上的资源,而 UrlReferrer 是请求该资源的 URL。

如果请求来自 google 搜索,UrlReferrer 将为您提供 google url,例如 http://www.google.com/search?q=[some text]

HttpContext.Current.Request.Url points to the resource on your server while UrlReferrer is the URL which requested the resource.

if the request is coming from google search, UrlReferrer will give you google url something like http://www.google.com/search?q=[some text]

五里雾 2024-11-07 15:28:16

来自 MSDN (http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx):

Url:获取有关当前请求的 URL 的信息。

UrlReferrer:获取有关链接到当前 URL 的客户端先前请求的 URL 的信息。

From MSDN (http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx):

Url: Gets information about the URL of the current request.

UrlReferrer: Gets information about the URL of the client's previous request that linked to the current URL.

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