假设当前页完整地址是:http://www.baidu.com?Action=Get&PostId=ttttt

【1】获取 完整url

string url=Request.Url.ToString();

url= http://www.baidu.com?Action=Get&PostId=ttttt

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

string url=Request.PathAndQuery;

(或 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

 

 

request 对象  获取当前页面的虚拟路径: Request.CurrentExecutionFilePath

 

 


本文转载:CSDN博客