ASP.
I'm using ASP.NET MVC 3 code-first and I have added validation data annotations to my models. Here's an example model: …
c# .net asp.net-mvc asp.net-mvc-3 asp.net-mvc-validationI'd like to create a custom validation attribute for MVC2 for an email address that doesn't inherit from RegularExpressionAttribute but …
asp.net-mvc asp.net-mvc-validationI have a RangeValidator on a property in my model to only allow Integers that are between 0 and 100. I have …
asp.net-mvc asp.net-mvc-3 jquery-ui data-annotations asp.net-mvc-validationI'm trying to solve a "A potentially dangerous Request.Form value was detected from the client" problem, and SO answers …
asp.net-mvc validation asp.net-mvc-3 asp.net-mvc-validationI'm messing around with data annotations. When I click on a link to go to a page, the validation messages …
c# asp.net-mvc razor data-annotations asp.net-mvc-validationI have a two step form process where the first set of data is stored in session. [IsMp4File] [Required(…
c# asp.net asp.net-mvc asp.net-mvc-2 asp.net-mvc-validationI have an ASP.NET MVC 4 App that uses the jQuery.validation.js plugin and MVC's jQuery.validation.unobtrusive.js. …
asp.net-mvc asp.net-mvc-4 unobtrusive-validation client-side-validation asp.net-mvc-validationI am not able to do the same thing with string properties. In the below code, I want to remove …
asp.net-mvc-4 asp.net-mvc-validationI have an ASP.net MVC model with a date: public class EditModel { [Display(Name="DOB")] public DateTime? DateOfBirth { get; …
c# asp.net-mvc asp.net-mvc-validationWorking on a MVC 3 application. I need to add a class to the validation message html. I mean for span …
asp.net-mvc asp.net-mvc-3 asp.net-mvc-validation