码迷,mamicode.com
首页 > Web开发 > 详细

下拉框Html.DropDownList 和DropDownListFor 的经常用法

时间:2014-08-15 12:13:58      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:style   使用   os   io   strong   数据   for   ar   

 一、非强类型:
Controller:
ViewData["AreId"] = from a in rp.GetArea()
                               select new SelectListItem {
                               Text=a.AreaName,
                               Value=a.AreaId.ToString()
                               };
View:
@Html.DropDownList("AreId")
还能够给其加上一个默认选项:@Html.DropDownList("AreId", "请选择");

二、强类型:
DropDownListFor经常使用的是两个參数的重载,第一參数是生成的select的名称,第二个參数是数据,用于将绑定数据源至DropDownListFor
Modle:
   public class SettingsViewModel
   {
       Repository rp =new Repository();
       public string ListName { get; set; }  
       public  IEnumerable<SelectListItem> GetSelectList()
       {
               var selectList = rp.GetArea().Select(a => new SelectListItem {
                               Text=a.AreaName,
                               Value=a.AreaId.ToString()
                               });
               return selectList;
           }
       }
Controller:
       public ActionResult Index()
       {
           return View(new SettingsViewModel());
       }
View:
@model Mvc3Applicationtest2.Models.SettingsViewModel
@Html.DropDownListFor(m=>m.ListName,Model.GetSelectList(),"请选择")

下拉框Html.DropDownList 和DropDownListFor 的经常用法,布布扣,bubuko.com

下拉框Html.DropDownList 和DropDownListFor 的经常用法

标签:style   使用   os   io   strong   数据   for   ar   

原文地址:http://www.cnblogs.com/yxwkf/p/3914261.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!