码迷,mamicode.com
首页 > 其他好文 > 详细

C#_dropdownlist_1

时间:2014-05-19 19:09:09      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   c   code   java   

在做 ASP.net MVC项目中,数据绑定也是很关键的,现在以个人经验与大家交流下 ASP.net MVC 中DropDownList绑定与提交数据,由于数据查询较为简单就不列出来了,具体看核心代码部分吧。

数据表:

bubuko.com,布布扣

DropDownList绑定

 

        public ActionResult ColumnManage()         {             ViewData["listchannel"= new SelectList(b00.ListChannel(), "ChannelID""ChannelName");             return View();         }

 

 其中b00.ListChannel()是BLL层中的

View中

 

bubuko.com,布布扣
bubuko.com,布布扣
bubuko.com,布布扣     <h2>栏目管理</h2>     <% SelectList categories = ViewData["listchannel"as SelectList; %>     <% using (Html.BeginForm()) { %>         <div>             <fieldset>                 <legend>添加栏目</legend>                 <p>栏目名称:<input type="text" id="columnname" style=" width:100px;"/></p>                 <p>上级目录:<select><option></option></select></p>                 <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 序:<input type="text" id="sort" style=" width:30px;"/></p>                 <p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 道:<%=Html.DropDownList("listchannel", categories)%></p>                          <p><input type="submit" value="保存" /></p>             </fieldset>         </div>     <% } %>
bubuko.com,布布扣
bubuko.com,布布扣

 

显示效果如下:

bubuko.com,布布扣

在提交时注意 DropDownList 还需要绑定一次

 

bubuko.com,布布扣
bubuko.com,布布扣
bubuko.com,布布扣         [AcceptVerbs(HttpVerbs.Post)]         public ActionResult ColumnManage(string columnname,string sort)         {             try             {                 ViewData["listchannel"= new SelectList(b00.ListChannel(), "ChannelID""ChannelName");                 m00.ChannelID = int.Parse(Request.Form["listchannel"]);                 Response.Write(m00.ChannelID);                 return View();             }             catch             {                 return View();             }         }
bubuko.com,布布扣
bubuko.com,布布扣

 

这样就可以提交获取DropDownList的 ID值了

C#_dropdownlist_1,布布扣,bubuko.com

C#_dropdownlist_1

标签:style   blog   class   c   code   java   

原文地址:http://www.cnblogs.com/MarchThree/p/3734699.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
分享档案
周排行
mamicode.com排行更多图片
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!