网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

创建具有自验证功能的textbox控件

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/10/13
p = _minValue;
          _minValue = _maxValue;
          _maxValue = swap;
      }
   }
}

    然后,我们扩充该Validate函数,并把编译它为本地代码
   
public override void Validate() {
   this.IsValid = true;

   bool isBlank = (this.Text.Trim() == "");

   if (isBlank) {
      if (!AllowBlank) {
         this.ErrorMessage = String.Format("''{0}'' " +
            "cannot be blank.", this.FriendlyName);
         this.IsValid = false;
      }
   } else {
      try {
         _value = Int32.Parse(this.Text);
         if (_value < this.MinValue) {
            this.ErrorMessage = String.Format("''{0}'' cannot " +
              "be less than {1}",
              this.FriendlyName, this.MinValue);
            this.IsValid = false;
         }

         if (_value > this.MaxValue) {
            this.ErrorMessage = String.Format("''{0}'' " +
               "cannot be more than {1}",
               this.FriendlyName, this.MinValue);
            this.IsValid = false;
         }
      } catch {
         this.ErrorMessage = String.Format("''{0}'' " +
              "is not a valid integer.", this.FriendlyName);
         this.IsValid = false;
      }
   }
}

public int Value {
   get { return _value; }
   set {
      _value = value;
      this.Text = _value.ToString();
   }
}

    结论
   
    要写就那么多了,现在我们还可以在这个类的基础上创建诸如要求只能输入符合一定时间格式和货币格式,下面我们举一个例子以说明如何使用我们创建的控件
   
    在此以前我们要实现同样的功能需要写以下的代码:
   
<asp:TextBox id="Number" runat="server"/>
<asp:RequiredFieldValidator id

网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号