, , . , .
protected abstract TextBox MyTextBox { get; }
MyTextBox.
, , PageBase, , .
EDIT:
. , MyPageBase, HomePage.aspx = "TextBox1"
public abstract class MyPageBase : Page
{
protected abstract TextBox MyTextBox { get; }
}
:
public partial class HomePage : MyPageBase
{
protected override TextBox MyTextBox
{
get
{
return this.TextBox1;
}
}
}
, . , , .
this.MyTextBox.Text = "Change the text";
, , , getter/setter text . , .