Top "Customvalidator" questions

The .NET `CustomValidator` class that allows custom validation of any UI input element

ASP.NET Custom Validator Client side & Server Side validation not firing

This has not happened to me before, but for some reason both the client and server side validation events are …

c# .net asp.net validation customvalidator
Elegant way to make CustomValidator work with ValidationSummary messagebox

I have run into this problem before but never quite solved it. I have a form with several validators and …

asp.net customvalidator validationsummary
asp.net custom validator not firing for textbox

I have both a required field validator and custom validator for validating a texbox. The required field validator fires perfectly. …

c# asp.net validation customvalidator
Dynamic error message for custom validator clientside

I am using a custom validator to call a javascript function for validation. My problem is that I need to …

javascript asp.net ajax customvalidator
ASP.NET Custom Validator Error Message: Control referenced by the property cannot be validated

I use ASP.NET and have a Button and a CustomValidator, which has to validate the button. <asp:Button …

asp.net customvalidator
jQuery validate custom rule in data attributes

I have an input text which already has some validate rules <input type="text" value="" placeholder="Write the code …

jquery jquery-validate customvalidator
custom validator for checkbox in asp.net

i have used custom validator protected void cvIsActive_ServerValidate(object source,ServerValidateEventArgs args) { if(args.Value.Length==1) args.IsValid = true; …

asp.net checkbox customvalidator
CustomValidator ServerValidate method does not fire

I've put a CustomValidator on my form. I have not set its ControlToValidate property. In its ServerValidate event I've written …

c# asp.net customvalidator
How do I validate that a list box is not empty (client side)

I'm working with ASP.NET 3.5. I have a list box that users must add items to (I've written the code …

asp.net validation listbox customvalidator
Custom Validator firing but it does not update the ValidationSummary

Hi I am working on a custom form field validator, it seems like the custom validator is working by not …

c# asp.net validation customvalidator validationsummary