2015-02-12 46 views
0

我用asp.net的MVC工作休息我想補充一個dropdown list保存一個靜態值等數值從數據庫下如何列表綁定drowpdown一個靜態值,並從數據庫

@Html.DropDownListFor(Function(model) model.nDepartmentID, 
    New SelectList(ViewBag.txt, "Value", "Text"), New With 
{Key .[class] = "select1",Key .style = "width: 150px;"}) 
+0

什麼是靜態值?像「選擇國家」作爲佔位符? – 2015-02-12 08:04:50

+0

請訪問[幫助中心](http://stackoverflow.com/help/how-to-ask)瞭解如何提出一個好問題。我已更新標題和您的問題。 – 2015-02-12 08:06:23

回答

0

未來使用代碼

@Html.DropDownListFor(m => m.nDepartmentID, (SelectList)ViewBag.DepartmentList, "Select Any Department", new {@class="select1",@style="width: 150px;" }) 

你的控制器動作將

public ActionResult ShowPage() 
{ 
     var deptmnts=db.Departments.ToList(); 
     ViewBag.DepartmentList=new SelectList(deptmnts,"ID","DepartmentName"); 
     retun View(); 
} 
相關問題