.NET获取当前网址url的各种属性(文件名、参数、域名 等)的代码

来源:互联网 发布:淘宝毛衣针外套 编辑:程序博客网 时间:2024/04/29 22:39

获取 完整url (协议名+域名+站点名+文件名+参数) 

string url=Request.Url.ToString(); 

获取 站点名+页面名+参数:

string url=Request.RawUrl; (或 string url=Request.Url.PathAndQuery;) 
获取 站点名+页面名: 
string url=HttpContext.Current.Request.Url.AbsolutePath; (或 string url= HttpContext.Current.Request.Path;) 
获取 域名
string url=HttpContext.Current.Request.Url.Host; 

获取 参数:
string url= HttpContext.Current.Request.Url.Query; 

Request.RawUrl:获取客户端请求的URL信息(不包括主机和端口)------>/Default2.aspx Request.ApplicationPath:获取服务器上ASP.NET应用程序的虚拟路径。------>/ Request.CurrentExecutionFilePath:获取当前请求的虚拟路径。------>/Default2.aspx Request.Path:获取当前请求的虚拟路径。------>/Default2.aspx Request.PathInfo:取具有URL扩展名的资源的附加路径信息------> Request.PhysicalPath:获取与请求的URL相对应的物理文件系统路径。------>E:\temp\Default2.aspx Request.Url.LocalPath:------>/Default2.aspx Request.Url.AbsoluteUri:------>http://localhost:8080/Default2.aspx Request.Url.AbsolutePath:---------------------------->/Default2.aspx 




转至http://www.jb51.net/article/24146.htm

原创粉丝点击