在 ASP.NET 中开发自定义验证以实现特定控制和标准

发布于 2024-09-06 00:30:15 字数 378 浏览 5 评论 0原文

还有另一个相关问题验证检查在 asp.net

在相同的场景中,我们需要一个自定义验证器控件,它将警告用户任何错误的输入。这将像这样工作:

  1. 开发人员将传递控件名称、输入值和所需格式
  2. 例如,对于文本框,它可以是:txtName,txtName.Text,仅允许字母表
  3. 如果用户输入无效,则相应的格式他/她会得到及时的答复。

请建议正确的方法来进行sma。

提前致谢。

There is another relevant question asked Validation Check in asp.net

In the same scenario we need a custom validator control which will alert user for any wrong entry. This will work like this :

  1. Developer will pass the control-name, input-value and format-required
  2. For instance like for textbox it can be: txtName,txtName.Text, allow-alphabets-only
  3. The accordingly format if the user input is invalid he/she will be got prompt.

Please suggest the right way to do the smae.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你是年少的欢喜 2024-09-13 00:30:15

您已经描述了所有 asp.net 验证器的默认行为(传递控制以进行验证等)。

您想要实现的目标(例如,仅字母字符或仅字母数字等)主要可以通过 RegularExpressionValidator 来实现。

You've described the default behaviour of all asp.net validators (pass control to validate etc).

What you want to achive (eg, alpha charaters only, or alphanumeric only etc) can be achieved mostly with the RegularExpressionValidator.

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