獲取當前網址/url/域名
濟寧果殼科技
2017-06-06 18:46:25
15
4713
設當前頁完整地址是:http://www.varg.cn/college/117.html
"http://"是協議名
"www.varg.cn"是域名
"college"是站點目錄名
"117.html"是頁面名(文件名)
代碼如下:
string url=Request.Url.ToString();
url 值為 http://www.varg.cn/college/117.html
代碼如下:
string url=Request.RawUrl;
(或 string url=Request.Url.PathAndQuery;)
url 值為 /college/117.html
代碼如下:
string url=HttpContext.Current.Request.Url.AbsolutePath;
(或 string url= HttpContext.Current.Request.Path;)
url 值為 college/117.html
代碼如下:
string url=HttpContext.Current.Request.Url.Host;
url 值為 www.varg.cn/college
代碼如下:
string url= HttpContext.Current.Request.Url.Query;
url 類似于 ?id=5
代碼如下:
Request.RawUrl:獲取客戶端請求的URL信息(不包括主機和端口)------>/117.html
Request.ApplicationPath:獲取服務器上ASP.NET應用程序的虛擬路徑。------>/
Request.CurrentExecutionFilePath:獲取當前請求的虛擬路徑。------>/117.html
Request.Path:獲取當前請求的虛擬路徑。------>/117.html
Request.PathInfo:取具有URL擴展名的資源的附加路徑信息------>
Request.PhysicalPath:獲取與請求的URL相對應的物理文件系統路徑。------>E:\temp\117.html
Request.Url.LocalPath:------>/117.html
Request.Url.AbsoluteUri:------>http://localhost:8080/117.html
Request.Url.AbsolutePath:---------------------------->/117.html