任何人都可以解释为什么如果我控制了受保护的属性,它就不能从 .aspx 中设置吗?
控制:
public partial class SomeUserControl : UserControl
{
protected bool SomeProperty
{
get { return ViewState["SomeProperty"] != null && (bool) ViewState["SomeProperty"]; }
set { ViewState["SomeProperty"] = value; }
}
...
}
.aspx 中的声明:
<custom:SomeUserControl ID="SomeUserControl1" runat="server" SomeProperty="true"/>
当我尝试调试 setter 时,从未调用过。