0
如何在我的ASP.NET工作的XAML中通過href標記傳遞值?
我已經試過這樣:傳遞href中的值
<a href='profile.aspx?ID=<%#HttpContext.Current.Session["id"]%>'>Profile</a>
但是網址顯示像"profile.aspx?ID="
我在做什麼錯?
如何在我的ASP.NET工作的XAML中通過href標記傳遞值?
我已經試過這樣:傳遞href中的值
<a href='profile.aspx?ID=<%#HttpContext.Current.Session["id"]%>'>Profile</a>
但是網址顯示像"profile.aspx?ID="
我在做什麼錯?
爲使您的代碼塊能夠正常使用#
,您需要調用DataBind
方法。或者,您可以使用=
的代碼塊,它應該可以正常工作: -
<a href='profile.aspx?ID=<%= HttpContext.Current.Session["id"]%>'>Profile</a>
您是否已調試以查看變量是否傳遞給它? – Quill
@Quill是的變量是44 – c0mrade
您的會話有沒有超時? – Quill