"http://"是協(xié)議名
"www.test.com"是域名
"aaa"是虛擬目錄名
"bbb.aspx"是頁面名(文件名)
"id=5&name=kelli"是參數(shù)
【1】獲取 完整url (協(xié)議名+域名+虛擬目錄名+文件名+參數(shù))
string url=Request.Url.ToString();
url= http://www.test.com/aaa/bbb.aspx?id=5&name=kelli
【2】獲取 虛擬目錄名+頁面名+參數(shù):
string url=Request.RawUrl;
(或 string url=Request.Url.PathAndQuery;)
url= /aaa/bbb.aspx?id=5&name=kelli
【3】獲取 虛擬目錄名+頁面名:
string url=HttpContext.Current.Request.Url.AbsolutePath;
(或 string url= HttpContext.Current.Request.Path;)
url= aaa/bbb.aspx
【4】獲取 域名:
string url=HttpContext.Current.Request.Url.Host;
url= www.test.com
【5】獲取 參數(shù):
string url= HttpContext.Current.Request.Url.Query;
url= ?id=5&name=kelli
Request.QueryString["id"]和Request.QueryString["name"]訪問各參數(shù)
Request.UrlReferrer可以獲取客戶端上次請求的url的有關(guān)信息, 這樣我們就可以通過這個屬性返回到“上一頁”。
同樣地,Request.UrlReferrer.Query可以獲取客戶端上次請求的url的有關(guān)參數(shù)部分。