Event Handlers (cont.)
Private Sub CustomValidator1_ServerValidate(ByVal source As _
   System.Object, ByVal args As _
   System.Web.UI.WebControls.ServerValidateEventArgs) _
   Handles CustomValidator1.ServerValidate
  If txtUsername.Text.Length < 6 Then
    args.IsValid = False
  Else
    args.IsValid = True
  End If
End Sub