1
Reply

How to Implement The DataAnnotions in mvc for DropDown List

Venkata Subbareddy

Venkata Subbareddy

Nov 4 2015 6:21 AM
651
 Hi All ,
 
  This Is model 
  [Required(ErrorMessage = " Please Select The Country Name.")]
public string CountryName { get; set; }
 
This is view 
@Html.DropDownListFor(m => m.CountryId, new SelectList(Model.CountryList, "Id", "Name"), new { @class = "form-control", placeholder = "Select Country", @autofocus = "autofocus" }) 
 
 
 
i try apply DataAnnonations   dropdown list , but not working Where Iam Doing please give suggestions  

Answers (1)