如何在ASP.NET工作的XAML中通过href标记传递值?
我试过这个:
<a href='profile.aspx?ID=<%#HttpContext.Current.Session["id"]%>'>Profile</a>
但是,网址显示为"profile.aspx?ID="
我做错了什么?
答案 0 :(得分:2)
要让您的代码块与#
一起正常使用,您需要调用DataBind
方法。或者,您可以将代码块与=
一起使用,它应该可以正常工作: -
<a href='profile.aspx?ID=<%= HttpContext.Current.Session["id"]%>'>Profile</a>