I couldn't get this code working. It's not displaying validation error message when I submit the form.

viewModel

    [Required] 
    public SelectList CountryList { get; set; }
    public string Country { get; set; }

Create.aspx

    <%= Html.DropDownListFor(m => m.Country,Model.CountryList, "--Select--")%>
        <%: Html.ValidationMessageFor(model => model.Country,"*") %>
link|improve this question

66% accept rate
you should accept answers if they are helpful to you – Tassadaque Dec 14 '10 at 11:01
feedback

1 Answer

Try this

public SelectList CountryList { get; set; }
[Required]  
public string Country { get; set; }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.