我有以下RegularExpressionValidator
只允許4位數。的RegularExpressionValidator錯誤消息不可見
<asp:RegularExpressionValidator ID="RegularExpressionValidator4" runat="server" ControlToValidate="txtPinCode" Display="Dynamic" ErrorMessage="Please make sure to select a PIN with four numeric digits" ValidationExpression="^\d{4,4}$" CssClass="caption">4 Digits Pincode</asp:RegularExpressionValidator>
它確實驗證,但沒有顯示錯誤消息:
請務必選擇四個數字組成
而是不斷顯示文本4 Digits Pincode
PIN碼。我希望將此文本替換爲錯誤消息。怎麼了?
刪除'4位Pincode'文本 –