これが私のカスタム コントロールです。WebControl クラスから [Height] プロパティを継承します。他のプロパティを計算するためにコンストラクターでアクセスしたいのですが、その値は常に 0 です。
public class MyControl : WebControl, IScriptControl
{
public MyControl()
{
AnotherProperty = Calculate(Height);
.......
}
私のaspx
<hp:MyControl Height = "31px" .... />