摘要:讓 DropDownList 顯示從資料庫抓出來的值
白痴如我,本來是寫一個dropdownlist的helper去顯示。
後來才知道原來這樣寫就行了
<% ViewData["Name"] = Model.Name; %>
<%: Html.DropDownListFor(model => model.Name, ViewData["NameList"] as SelectList )%>
摘要:讓 DropDownList 顯示從資料庫抓出來的值