RegularExpressionValidator

RegularExpressionValidator

本文介绍了双错误消息RegularExpressionValidator的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<table cellpadding="2" cellspacing="2" align="center">
<tr>
  <asp:ValidationSummary ID="Alert" runat="server" CssClass="failureNotification" HeaderText=""/>
</tr>

 <tr>
   <FTB:FreeTextBox id="FTB" runat="server"/>
  <asp:RegularExpressionValidator ID="rev" runat="server" ControlToValidate="FTB" ErrorMessage="Content cannot be empty." ValidationExpression="[^\s]+" CssClass="failureNotification"/>
 </tr>
</table>







当我让FreeTextBox为空时,RegularExpressionValidator的错误信息显示在2个位置

[]



帮助! !我只想在一个位置显示错误消息




When I let the FreeTextBox empty, Error message of RegularExpressionValidator shows in 2 positions
http://img856.imageshack.us/img856/1275/rxyq.png[here]

Help!! I just want to show Error Message in one position

推荐答案



这篇关于双错误消息RegularExpressionValidator的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-23 13:15