Top "Client-side-validation" questions

If the user is working with a browser that supports dynamic HTML (DHTML), Validation can perform validation using client script.

RegularExpressionAttribute - How to make it not case sensitive for client side validation?

I have a string that I use for client side validation: private const String regex = @"^(?:\b(?:\d{5}(?:\s*-\s*\…

regex asp.net-mvc-2 client-side-validation
Asp.Net MVC EnableClientValidation doesn't work

I want as well as Client Side Validation as Server Side Validation. I realized this as the following: Model: ( The …

validation asp.net-mvc-2 data-annotations client-side-validation
Why is client-side validation not enough?

I saw here that: As you probably already know, relying on client-side validation alone is a very bad idea. Always …

validation server-side client-side-validation
ASP.Net Mvc Fixed-Length String Data Annotation

How can I set the string validation for a fixed-length string using data annotation ? I want to have a property …

asp.net-mvc validation asp.net-mvc-4 data-annotations client-side-validation
Why is client-side validation a security risk as opposed to server-side validation?

I don't quite understand why client side validation is a potential security risk or more of a security risk than …

validation client-side-validation
IValidatableObject in MVC3 - client side validation

With MVC3 you have two new mechanisms for adding custom validation. These are (1) subclass ValidationAttribute or (2) implement IValidatableObject. The ValidationAttribute …

validation asp.net-mvc-3 client-side-validation
ASP.NET MVC ValidationAttribute Get Other Property Display Name

I have created a custom CompareLessThan validation attribute by copying the ASP.NET MVC 3 CompareAttribute and instead of checking for …

asp.net-mvc validation client-side-validation validationattribute
How to trigger ASP.NET client-side validations without submit?

I have a website in ASP.NET (WebForms, NOT MVC) which has a survey form divided in several slides. Each …

asp.net webforms client-side-validation lost-focus
How do I turn off client side validation in MVC 3?

I have a framework for client side validation that I'd prefer to use over the existing one that ships with …

asp.net-mvc-3 client-side-validation