0
我需要關於在內容標籤內部創建錨鏈接標籤的幫助。它可以工作,如果我設置像<a id="loginLink" runat="server" href="~/Account/Login">Log in</a>
的確切路徑。但是,有一個解決方案,如果我想通過會話設置dynamicaly生成的路徑是這樣的:鏈接標籤在內容標籤中不起作用
<asp:Content ID="Content3" ContentPlaceHolderID="MainContent" runat="server">
<ul>
<li><a id="registerLink" href='<%# Session["PreviousPage"] %>'>Register</a></li>
</ul>
</asp:Content>
是它的工作原理。它也適用於'">Register' –