这是我的自定义控件。它从 WebControl 类继承 [Height] 属性。我想在构造函数中访问它以计算其他属性。但它的值始终为 0。知道吗?
public class MyControl : WebControl, IScriptControl
{
public MyControl()
{
AnotherProperty = Calculate(Height);
.......
}
我的 aspx
<hp:MyControl Height = "31px" .... />