HttpModule 中的 Request.Url 和 ReferrerUrl
我们在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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 whileUrlReferrer
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]来自 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.