程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> asp.net Request獲取url信息的各種方法比較

asp.net Request獲取url信息的各種方法比較

編輯:ASP.NET基礎
本頁地址: 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:\WWW\testweb\
Request.PhysicalPath: E:\WWW\testweb\default.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()
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved