如何获取当前页面URL(不包括查询字符串参数)。 我的网址是这样的https://mywebsite.com/myproject/detailspage?id=2812
我只想得到https://mywebsite.com/myproject/detailspage。
我尝试过但没有帮助。
string path = HttpContext.Current.Request.Url.AbsolutePath;
string url = HttpContext.Current.Request.Url.AbsoluteUri;
请提出任何建议。
答案 0 :(得分:1)
Request.Url.GetLeftPart(UriPartial.Path)