首页 > Web开发 > 详细

MVC4.0实现批量删除

时间:2015-04-10 21:51:20      阅读:2378      评论:0      收藏:0      [点我收藏+]

HTML:

@using(Html.BeginForm("Delete","Home")){
   <div>
       <input type="submit" value="删除" class="delete" onclick="return confirm(‘确定要删除吗?‘)"/>
   </div>
    <table>
        <tr>
            <th>@Html.CheckBox("chackall")</th>
            <th>标题</th>
            <th>操作</th>
        </tr>
        <tr>
            <td>@Html.CheckBox("checkid",new{ value="1"})</td>
            <td>数据1</td>
            <td>@Html.ActionLink("详细","Details",new{ id="1"})</td>
        </tr>
        <tr>
            <td>@Html.CheckBox("checkid",new{ value="2"})</td>
            <td>数据2</td>
            <td>@Html.ActionLink("详细","Details",new{ id="2"})</td>
        </tr>
        <tr>
            <td>@Html.CheckBox("checkid",new{ value="3"})</td>
            <td>数据3</td>
            <td>@Html.ActionLink("详细","Details",new{ id="3"})</td>
        </tr>
        <tr>
            <td>@Html.CheckBox("checkid",new{ value="4"})</td>
            <td>数据4</td>
            <td>@Html.ActionLink("详细","Details",new{ id="4"})</td>
        </tr>
        <tr>
            <td>@Html.CheckBox("checkid",new{ value="5"})</td>
            <td>数据5</td>
            <td>@Html.ActionLink("详细","Details",new{ id="5"})</td>
        </tr>
    </table>
}

Action:

        [HttpPost]
        public ActionResult Delete(List<string> checkid)
        {
            ApplicationContext db=new ApplicationContext();
            try
            {
                // TODO: Add delete logic here
                db.RemoveAll(m => checkid.Contains(m.id));
                db.SaveChanges(); 

                return RedirectToAction("Index");
            }
            catch
            {
                return View();
            }
        }

 

MVC4.0实现批量删除

原文:http://www.cnblogs.com/sky-net/p/4415697.html

(2)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!