获取当前网址/url/域名
济宁果壳科技
2017-06-06 18:46:25
15
5436
设当前页完整地址是:http://www.guokit.com/college/117.html
"http://"是协议名
"www.guokit.com"是域名
"college"是站点目录名
"117.html"是页面名(文件名)
代码如下:
string url=Request.Url.ToString();
url 值为 http://www.guokit.com/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.guokit.com/college
代码如下:
string url= HttpContext.Current.Request.Url.Query;
url 类似于 ?id=5
代码如下:
Request.RawUrl:获取客户端请求的URL信息(不包括主机和端口)------>/117.html
Request.ApplicationPath:获取服务器上ASP.NET应用程序的虚拟路径。------>/
Request.CurrentExecutionFilePath:获取当前请求的虚拟路径。------>/117.html
Request.Path:获取当前请求的虚拟路径。------>/117.html
Request.PathInfo:取具有URL扩展名的资源的附加路径信息------>
Request.PhysicalPath:获取与请求的URL相对应的物理文件系统路径。------>E:\temp\117.html
Request.Url.LocalPath:------>/117.html
Request.Url.AbsoluteUri:------>http://localhost:8080/117.html
Request.Url.AbsolutePath:---------------------------->/117.html