如何获取相对uri的绝对uri?
我有一个页面,其相对路径是“~/pages/mypage.aspx”。
我尝试使用 VirtualPathUtility.ToAbsolute(@"~/pages/mypage.aspx") 希望获得绝对 uri,但它只返回相同的相对路径。
如何从相对 uri 中获取绝对 uri?
谢谢,
I have a page whose relative path is "~/pages/mypage.aspx".
I tried using VirtualPathUtility.ToAbsolute(@"~/pages/mypage.aspx") hoping to get the absolute uri but it only returns the same relative path.
How could I get the absolute uri from this relative uri?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我用了这个方法:
I used this method:
摘自http://www.west-wind.com/weblog/posts/154812 .aspx
Taken from http://www.west-wind.com/weblog/posts/154812.aspx