例如:
Controller
ViewData["Category"] = new SelectList(repository.GetAllCategories(), "CategoryId", "CategoryName", id);
View
<%= Html.DropDownList("Category", ViewData["Category"] as SelectList)%>
各位測試後會發現沒有辦法設定DropDownList的預設值。解決方法就是不要將ViewData的key name設定成和DropDownList的ID一樣
在國外論壇上也有人提出類似問題
No comments:
Post a Comment