Click here to Skip to main content
15,892,161 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hey, i am munish, i don't know the required validator for dropdownlist in mvc3
Posted
Comments
GateKeeper22 2-Dec-11 15:20pm    
What do you mean by required validator? Do you mean the validator control to display the message or do you mean the data attribute to store the message in?

1 solution

Hello munish,

For this you need to add one key property in your model. and bind your dropdownlist with that key property in view.

then add [Required(ErrorMessage="")] attribute above the property which is you have define in model. refer below quick example

In Model

public List<selectedlistitem> Values{get;set;}

[Required(ErrorMessage="Select the Value")]
public int KerProperty{get;set;}


In View

@Html.Dropdownfor(model=>model.KerProperty,Model.Values)
@Html.ValidationMessageFor(model=>model.KerProperty)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900