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