2010-12-13 109 views
1

我無法獲得此代碼的工作。我提交表單時不顯示驗證錯誤消息。驗證DropdownlistFor幫助

視圖模型

[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

你應該接受的答案,如果他們對您有幫助 – Tassadaque 2010-12-14 11:01:12

回答

2

試試這個

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