获取当前请求的URL的地址参数参数值各种属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前请求的URL的地址参数参数值各种属性相关的知识,希望对你有一定的参考价值。

技术分享
 1  //URL: http://localhost:1897/User/Press/UserContent.aspx/9878?id=1#toc
 2             Request.ApplicationPath;    //结果: /
 3             Request.PhysicalPath;     //结果: D:\Projects\Solution\web\User\Press\UserContent.aspx
 4             System.IO.Path.GetDirectoryName(Request.PhysicalPath);     //结果: D:\Projects\Solution\web\User\Press
 5             Request.PhysicalApplicationPath;     //结果: D:\Projects\Solution\web\
 6             System.IO.Path.GetFileName(Request.PhysicalPath);     //结果: UserContent.aspx
 7             Request.CurrentExecutionFilePath;     //结果: /User/Press/UserContent.aspx
 8             Request.FilePath;     //结果: /User/Press/UserContent.aspx
 9             Request.Path;     //结果: /User/Press/UserContent.aspx/9878
10             Request.RawUrl;     //结果:l /User/Press/UserContent.aspx/9878?id=1
11             Request.Url.AbsolutePath;     //结果: /User/Press/UserContent.aspx/9878
12             Request.Url.AbsoluteUri;     //结果: http://localhost:1897/User/Press/UserContent.aspx/9878?id=1
13             Request.Url.Scheme;   //结果: http
14             Request.Url.Host;     //结果: localhost
15             Request.Url.Port;     //结果: 1897
16             Request.Url.Authority;      //结果:localhost:1897
17             Request.Url.LocalPath;     //结果: /User/Press/UserContent.aspx/9878
18             Request.PathInfo;     //结果: /9878
19             Request.Url.PathAndQuery;     //结果: /User/Press/UserContent.aspx/9878?id=1
20             Request.Url.Query; //结果: ?id=1
View Code

 

以上是关于获取当前请求的URL的地址参数参数值各种属性的主要内容,如果未能解决你的问题,请参考以下文章

.net和js 获取当前url各种属性

System.Uri类 - 获取Url的各种属性,文件名,参数,域名,端口等等

js实现在页面打开链接时自动给url加上#记录值参数

如何使用js获取修改URL

js获取url参数 如何改变当前页面内某个图片的地址?

js如何获取地址栏的参数