我有一个 cutomvalidator、textbox.text = 1 和一个子例程:
1.
asp:TextBox id="tbxNumber" runat="server" MaxLength="100
2.
asp:CustomValidator id="vNumeric" runat="server" ControlToValidate="tbxNumber" Display="None" OnServerValidate="ValidateNumbers2"
3.
Sub ValidateNumbers2(ByVal source As Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs)
If Not IsNumeric(args.Value) Then
args.IsValid = False
Else
args.IsValid = True
End If
End Sub
当我尝试调试 vNumeric.Validate 时,子 ValidateNumbers2 不会触发?为什么?
想法?我在这个小问题上浪费了太多时间。由于某些原因,我只需要使用 customvalidator。