如何使用代码隐藏技术在asp.net中获取当前页面的URL?

前端之家收集整理的这篇文章主要介绍了如何使用代码隐藏技术在asp.net中获取当前页面的URL?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想获得像abc.aspx这样的页面的Url.我怎样才能使用代码背后的技术.任何想法.?

解决方法

完整详细信息,您可以稍后使用字符串操作进行高级操作:
string url = HttpContext.Current.Request.Url.AbsoluteUri;
// http://localhost:1302/TESTERS/Default6.aspx

string path = HttpContext.Current.Request.Url.AbsolutePath;
// /TESTERS/Default6.aspx

string host = HttpContext.Current.Request.Url.Host;
// localhost

How to get the URL of the current page in C#

原文链接:https://www.f2er.com/aspnet/251944.html

猜你在找的asp.Net相关文章