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