首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

怎么重写TextBox的Text属性,需要示例

2012-01-15 
如何重写TextBox的Text属性,需要示例如何重写TextBox的Text属性,需要详细的完整的示例``SOS[解决办法]publ

如何重写TextBox的Text属性,需要示例
如何重写TextBox的Text属性,需要详细的完整的示例``SOS

[解决办法]
public class MyTextBox : System.Web.UI.WebControls.TextBox
{
public override string Text
{
get { return base.Text; }
set
{
// 验证代码
// ...
// example validation case
if(value != "csdn ") thrown new Exception( "请输入小写的csdn ");
// ...
base.Text = value;
}
}
[解决办法]
public class usertxtbox : System.Windows.Forms.TextBox
{
public override string Text
{
get
{
return base.Text;
}
set
{
base.Text = value;
}
}

}

热点排行