版权所有,禁止匿名转载;禁止商业使用。
假设当前页完整地址是:http://www.cheerfulstudy.com/cheerful/article.html?newsid=23
"http://"是协议名
"www.cheerfulstudy.com"是域名
"cheerful"是站点名
"/article.html"是页面名(文件名)
"newsid=23"是参数
【1】获取 完整url (协议名+域名+站点名+文件名+参数)
string url=Request.Url.ToString();
url= http://www.cheerfulstudy.com/cheerful/article.html?newsid=23
【2】获取 站点名+页面名+参数:
string url=Request.RawUrl;
(或 string url=Request.Url.PathAndQuery;)
url= /cheerful/article.html?newsid=23
【3】获取 站点名+页面名:
string url=HttpContext.Current.Request.Url.AbsolutePath;
(或 string url= HttpContext.Current.Request.Path;)
url= article.html?newsid=23
【4】获取 域名:
string url=HttpContext.Current.Request.Url.Host;
url= www.cheerfulstudy.com
【5】获取 参数:
string url= HttpContext.Current.Request.Url.Query;
url= ?newsid=23