_cuclife.com
当前位置:cuclife.com > IT > ASP.NET >

比较Request获取url有关信息的各种方法

  本页地址: 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 地址是, 结果如下:

  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:

  Request.Url.Host:

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

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

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

文章来源:网络整理  本站编辑:兰特
上一篇:ASP.NET中如何实现窗口弹出
下一篇:详细解析ASP.NET的SEO:实现内容重定向
评论列表(网友评论仅供网友表达个人看法,并不表明本站同意其观点或证实其描述)