文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>Html.DropDownList()的用法 ( Asp.Net MVC)

Html.DropDownList()的用法 ( Asp.Net MVC)

时间:2011-06-11  来源:耿爱学

Html.DropDownList()赋默认值:

页面代码如下:

  <%
                List<SelectListItem> list = new List<SelectListItem> {

                new SelectListItem { Text = "启用", Value = "0",Selected = true},

                new SelectListItem { Text = "禁用", Value = "1" } };
  %>//list储存dropdownlist的默认值
 <%=Html.DropDownList("state",list,Model.state) %>  //state为实体的属性,默认选中"启用"

Html.DropDownList()从数据库读取值:

页面代码如下:

<%= Html.DropDownList("Category", ViewData["Categories"] as SelectList,"--请选择--",new { @class = "my-select-css-class" } )%>

Controllers代码:

public ActionResult Create() 

{
        List<Category> categories = categoryService.GetAll();
        ViewData["Categories"] = new SelectList(categories, "Id", "Name");
        return View();
}

相关阅读 更多 +
排行榜 更多 +
谜境最新版手游

谜境最新版手游

休闲益智 下载
混乱之种汉化版

混乱之种汉化版

动作格斗 下载
火车冲鸭

火车冲鸭

休闲益智 下载