需要从Web.Config中将AppSettings键添加到ASPX菜单控件上的NavigateURL属性中: 应用如下:
<asp:MenuItem NavigateUrl="http://<%$AppSettings:urlkey%>/index1.aspx"
Text="index page" Value="index page"></asp:MenuItem>
其中
以上代码无效!请帮忙
答案 0 :(得分:0)
您无法在ASP.NET服务器控件元素声明中使用服务器标记<%= ... %>
语法。你应该在代码隐藏中设置它。
您的runat="server"
还在哪里?
最后查看this answer,因为它可能对您有所帮助。