我发现这个问题显示了自定义用户控件(ascx)上的属性可以作为 HTML 属性内联分配:UserControl (*.ascx) 中的自定义属性?
这很好用,但是如果我在我的页面上注册一个自定义用户控件并想在我的代码中设置/获取该控件的属性怎么办?
ASPX:
<%-- I can assign ActivePage inline and this works fine --%>
<wd:NavBar ID="MyNavBar" runat="server" ActivePage="navbarItem1" />
ASPX.CS:
// I need to change the ActivePage
if (what == "internal")
{
RunInternalComparison();
MyNavBar.ActivePage = "navbarItem1";
}
else if (what == "external")
{
RunExternalComparison();
MyNavBar.ActivePage = "navbarItem2";
}
这就是我想做的,但它不起作用。这可能吗?