在 ASP.NET 中开发自定义验证以实现特定控制和标准
还有另一个相关问题验证检查在 asp.net
在相同的场景中,我们需要一个自定义验证器控件,它将警告用户任何错误的输入。这将像这样工作:
- 开发人员将传递控件名称、输入值和所需格式
- 例如,对于文本框,它可以是:txtName,txtName.Text,仅允许字母表
- 如果用户输入无效,则相应的格式他/她会得到及时的答复。
请建议正确的方法来进行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 :
- Developer will pass the control-name, input-value and format-required
- For instance like for textbox it can be: txtName,txtName.Text, allow-alphabets-only
- 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已经描述了所有 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.