通过href中的值传递

时间:2015-04-13 00:38:58

标签: c# asp.net url

如何在ASP.NET工作的XAML中通过href标记传递值?
我试过这个:

 <a href='profile.aspx?ID=<%#HttpContext.Current.Session["id"]%>'>Profile</a>

但是,网址显示为"profile.aspx?ID="

我做错了什么?

1 个答案:

答案 0 :(得分:2)

要让您的代码块与#一起正常使用,您需要调用DataBind方法。或者,您可以将代码块与=一起使用,它应该可以正常工作: -

 <a href='profile.aspx?ID=<%= HttpContext.Current.Session["id"]%>'>Profile</a>