本文實例講述了ASP.NET MVC4中使用Html.DropDownListFor的方法。分享給大家供大家參考,具體如下:
一、控制器部分:
public ActionResult PageDetail() { var thisList = _sysDepartmentBll.GetAllDepartmentList();//數(shù)據(jù)源 //添加一條默認(rèn)數(shù)據(jù) var resultList = new List<SelectListItem> { new SelectListItem {Text = "--請選擇--", Selected = true, Value = ""} }; //將數(shù)據(jù)源添加到resultList集合中 resultList.AddRange(thisList.Select(thisModel => new SelectListItem { Text = thisModel.DepartmentName, Selected = false, Value = thisModel.DepartmentId })); ViewBag.DepartmentList= GetDepartmentSelectList(_sysDepartmentBll.GetAllDepartmentList()); return View(); }
二、PageDetail.cshtml部分
代碼如下:@Html.DropDownListFor(m => m.DepartmentId, ViewBag.DepartmentList as IEnumerable<SelectListItem>, new { id = "ddlDepartment"})
或者:
代碼如下:@Html.DropDownListFor(m => m.DepartmentId, (List<SelectListItem>)ViewBag.DepartmentList, new { id = "ddlDepartment"})
更多關(guān)于asp.net相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《asp.net優(yōu)化技巧總結(jié)》、《asp.net字符串操作技巧匯總》、《asp.net操作XML技巧總結(jié)》、《asp.net文件操作技巧匯總》、《asp.net ajax技巧總結(jié)專題》及《asp.net緩存操作技巧總結(jié)》。
希望本文所述對大家asp.net程序設(shè)計有所幫助。
聲明:本網(wǎng)頁內(nèi)容旨在傳播知識,若有侵權(quán)等問題請及時與本網(wǎng)聯(lián)系,我們將在第一時間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com