请告知如何在ASP.NET中使用当前URL启动NavigateUrl。
当前网址如下:
http://localhost:145/Catalog.aspx?FID=2
我试过“〜/”,但它只显示:http://localhost:145/
NavigateUrl='<%# String.Format("~/") %>'
有没有办法像我们在代码隐藏文件中那样使用Request.QueryString["FID"]
?
谢谢!
答案 0 :(得分:2)
NavigateUrl='<%# Request.RawUrl %>'
答案 1 :(得分:1)
'<%# Request.Url.AbsoluteUri %>'
如果你想看看你能从Request.Url对象中得到什么: