MVC4 @Html.DropDownList的用法

前臺頁碼代碼:spa

       <div style="margin:10px 5px;"><font color="red">當前角色:</font>@Html.DropDownList("RKEY", "-請選擇角色-")</div>blog

 

後臺數據綁定代碼:io

        public ActionResult Index()
        {
            ViewBag.RKEY = new SelectList(db.Roles, "RKEY", "RoleName");
            var rolesrights = db.RolesRights.Include(r => r.Roles).Include(r => r.BaseDatas);
            return View(rolesrights.ToList());
        }
後臺

效果:List

  

相關文章
相關標籤/搜索