easyui combobox下拉框读取数据库中的一张表
求详细代码??
前台:@Html.DropDownListFor(model => new Model.IMA().T19, ViewData["T19"] as IEnumerable<SelectListItem>, new { style = "width:80px;", disabled = "disabled" })
后台:
List<SelectListItem> itemta = new List<SelectListItem>(); if (list.Count > 0) { itemta.Add(new SelectListItem { Text = list[0].T19, Value = list[0].T19 }); ViewData["T19"] = itemta; } else { itemta.Add(new SelectListItem { Text = "", Value = "" }); ViewData["T19"] = itemta; }
这个是 在html页面写的 没有后台 唯一的后台是url调用wcf服务