我无法使用此代码。我提交表单时没有显示验证错误消息。
视图模型
[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,"*") %>
答案 0 :(得分:2)
试试这个
public SelectList CountryList { get; set; }
[Required]
public string Country { get; set; }