如何以编程方式(即在运行时)验证文本框
我正在创建文本框,当单击按钮时,一次又一次等等,
同时接受输入,我需要检查框是否都已满,
我知道如何使用设计视图执行此操作,但如何使用
添加和编码来 执行此操作在初始化/将其添加到页面之前创建文本框时验证控件。?
验证不应为空..
i am creating textboxes when a button is clicked and again and again and so on
while accepting input i need to check if the boxes are all full,
i know how to do this using design view but how to do this using coding
that is add and validation control to the textbox when it created before initializing/adding it to the page.?
validation should be not null..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因此,对于验证用户输入,我将远离 ASP.Net 控制验证器,因为业界几乎没有人使用它们。我将使用默认包含在新 Visual Studio 项目中的 jQuery 验证器插件。您仍然需要服务器端检查,但调用 String.isNullOrEmpty(txtBox.Text) 比使用控件验证器要容易得多。
So as for validating the user input I would stay away from the ASP.Net Control Validators as hardly anyone in industry uses them. I would use the jQuery validator plugin which is included in a new Visual Studio project by default. You will still want Server side checking but it is much easier to call String.isNullOrEmpty(txtBox.Text) rather than using the Control Validators.