标题问题。
示例:
一个字段有两个验证器:compareValidator和rangeValidator。 CompareValidator检查字段是否具有整数类型。 RangeValidator检查字段是否大于18且小于120.但如果我写随机字母,则显示两个错误消息。从逻辑上讲,只显示来自CompareValidator的消息错误。
你有任何提议吗?
答案 0 :(得分:1)
可以将RangeValidator设置为检查类型:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.basecomparevalidator.type.aspx。将其设置为Integer,然后您将不再需要第二个验证器。
错误消息可能如下:该值应为18到120之间的数字。