CustomValidator and DropDownList
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
I have been using validators for awhile, but it seems that I cant get a CustomValidator to work on a DropDownList. The code is pretty simple, I have the following Then in my codebehind I have the following Private Sub CustomValidator1_ServerValidate(ByVal source As Object, ByVal args As System.Web.UI.WebControls.ServerValidateEventArgs) Handles CustomValidator1.ServerValidate '... do stuff End Sub But it doesnt matter because the validate event doesnt even go off. Any ideas?