如何以编程方式(即在运行时)验证文本框

发布于 2024-09-06 04:16:06 字数 154 浏览 2 评论 0原文

我正在创建文本框,当单击按钮时,一次又一次等等,

同时接受输入,我需要检查框是否都已满,

我知道如何使用设计视图执行此操作,但如何使用

添加和编码来 执行此操作在初始化/将其添加到页面之前创建文本框时验证控件。?

验证不应为空..

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

云醉月微眠 2024-09-13 04:16:06

因此,对于验证用户输入,我将远离 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文