I\'m using the module-level validator: \'PropertiesMustMatch\' on my view-model, like so: [PropertiesMustMatch(\"Password\", \"PasswordConfirm\")]
i am tasked with the job of creating client-side validation on a form in an asp.net MVC 2 application, which has a modal window (the modal exists as part of the wrapping form, it is not a form unto it
I have a model like this: public PurchaseOrder { [Required] [StringLength(15)] public virtual string OrderNumber {get;set;}
This is my first question here on stack overflow. i need help on a problem i encountered during an ASP.NET MVC2 project i am currently working on.
How do I start validation from the client/javascript using the MS MVC Validation library? Using MS ASP.Net MVC, I have a page with a PartialView in a modal dialog (change password).When the user sele
I want to have the ValidationSummary errors displayed during Client Side valid开发者_运维百科ation. Currently the validation messages are only appears next to the field during client side validation.
I need to set the ErrorMessage property of the DataAnnotation\'s validation attribute in MVC 2.0. For example I should be able to pass an ID instead of the actual error message for the Model property,
So I\'m looking at moving from MVC 1.0 to MVC 2.0 RTM.One of the conventions I\'d like to start following is using the strongly-typed HTML helpers for generating controls like text boxes.
I have this classes: public class GroupMetadata { [HiddenInput(DisplayValue = false)] public int Id { get; set; }
I have been using asp.net mvc for a bit (but I\'m still a beginer).I want to have the ability to update two views as a result of a jquery postback.