为自定义验证器设置错误消息?
我想使用 customvalidator 控件来处理所有验证,但我不知道如何在代码隐藏中设置错误消息以进行不同的检查。这可能吗?
I would like to use a customvalidator control to handle all my validation, but I can't figure out how to set the error message in the code-behind for different checks. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 OnServerValidate 方法中设置错误消息根据您的验证逻辑,如您所愿:
You can set the error message in the OnServerValidate method as you wish based on your validation logic:
对于一个控制你可以这样做..
For One Control you can do like this..