asp.net Request获取url信息的各种方法比较_asp.net教程-查字典教程网
asp.net Request获取url信息的各种方法比较
asp.net Request获取url信息的各种方法比较
发布时间:2016-12-29 来源:查字典编辑
摘要:本页地址:Request.URL;上页地址:复制代码代码如下:Request.UrlReferrerRequest.ServerViable...

本页地址: Request.URL;

上页地址:

复制代码 代码如下:

Request.UrlReferrer

Request.ServerViables["http_referer"]

Request.RawUrl

Request.RawUrl.QueryAndPath

System.IO.Path.GetFileName(Request.FilePath.ToString())

在ASP.NET编程中经常需要用Request获取url的有关信息,Request中有多种方法获取 url信息,但我经常忘了各种方法的具体作用,今天我就写了个测试程序,将各种方法得到的结果列出来,以后用时直接参考一下就行了。

测试的url 地址是http://www.test.com/testweb/default.aspx, 结果如下:

复制代码 代码如下:

Request.ApplicationPath: /testweb

Request.CurrentExecutionFilePath: /testweb/default.aspx

Request.FilePath: /testweb/default.aspx

Request.Path: /testweb/default.aspx

Request.PathInfo:

Request.PhysicalApplicationPath: E:WWWtestweb

Request.PhysicalPath: E:WWWtestwebdefault.aspx

Request.RawUrl: /testweb/default.aspx

Request.Url.AbsolutePath: /testweb/default.aspx

Request.Url.AbsoluteUri: http://www.test.com/testweb/default.aspx

Request.Url.Host: www.test.com

Request.Url.LocalPath: /testweb/default.aspx

当url中带参数时可以使用:

HttpContext.Current.Request.Url.PathAndQuery.ToString()

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新asp.net教程学习
    热门asp.net教程学习
    编程开发子分类