Request.Url

来源:互联网 发布:阿里云没有公网ip 编辑:程序博客网 时间:2024/06/06 16:47
假设当前页完整地址是:http://blog.csdn.net/hashxu/article.aspx?Action=Get&PostId=6858577

【1】获取 完整url

string url=Request.Url.ToString();

url= http://blog.csdn.net/hashxu/article.aspx?Action=Get&PostId=6858577

【2】获取 ID+页面名+参数:

string url=Request.RawUrl;

(或 string url=Request.Url.PathAndQuery;)

url= /hashxu/article.aspx?Action=Get&PostId=6858577

【3】获取 ID+页面名:

string url=HttpContext.Current.Request.Url.AbsolutePath;

(或 string url= HttpContext.Current.Request.Path;)

url= hashxu/article.aspx

【4】获取 域名:

string url=HttpContext.Current.Request.Url.Host;

url= blog.csdn.net

【5】获取 参数:

string url= HttpContext.Current.Request.Url.Query;

url= ?Action=Get&PostId=6858577

原创粉丝点击