标签: .net routing webforms
我正在使用路由与.NET Web表单。 (.NET 4.0)
页面如何找出实际的URL是什么?
例如,在以下网址:
/路由/友好-URL /
我希望页面打印出来:
/folder/mypage.aspx
答案 0 :(得分:1)
使用Page.AppRelativeVirtualPath。
Page.AppRelativeVirtualPath
示例:
<body> Path to ASPX: <%= Page.AppRelativeVirtualPath %> </body>