MVC4制作网站教程第三章 删除用户组操作3.4
一、用户
二、用户组
2.1浏览用户组
2.2添加用户组
2.3修改用户组
2.4删除用户组
删除用户组相对简单些,不用单独的页面,直接在浏览页面点击删除时,弹出确认删除对话框,点击确认,用jquery post删除。
打开【UserGroupController】,删掉public ActionResult Delele(int GroupId) { return View(); }
修改删除处理Action[Delete(int Id)],修改后的代码
/// <summary> /// 删除用户组 /// </summary> /// <param name="Id">用户组Id</param> /// <returns></returns> [HttpPost] [AdminAuthorize] public JsonResult Delete(int Id) { userGroupRsy = new UserGroupRepository(); if (userGroupRsy.Delete(Id)) return Json(true); else return Json(false); }
这里返回类型为JsonResult目的方便使用jquery 的post方式删除。
打开List.cshtml,将@Html.ActionLink("删除", "Delete", new { id = item.UserGroupId }) 改为<a href="javascript:void(0)" onclick="Delete(@item.UserGroupId,'@item.Name')" >删除</a>
在文件底部添加脚本
function Delete(id,name) { if (confirm("你确定要删除【" + name + "】吗?")) { $.post("@Url.Content("~/UserGroup/Delete")", {Id:id}, function (data) { if (data) { alert("删除【" + name + "】成功!"); location.reload(); } }); } }
完成后整个List.cshtml的代码如下:
@model IEnumerable<Ninesky.Models.UserGroup> @{ ViewBag.Title = "用户组列表"; Layout = "~/Views/Layout/_Manage.cshtml"; } <div class="left"> <div class="top"></div> 左侧列表 </div> <div class="split"></div> <div class="workspace"> <div class="inside"> <div class="notebar"> <img alt="" src="~/Skins/Default/Manage/Images/UserGroup.gif" />用户组列表 </div> <div class="buttonbar">@Html.ActionLink("添加用户组", "Add", "UserGroup") 用户组类型: @Html.DropDownList("GroupTypeList") </div> <table> <tr> <th> @Html.DisplayNameFor(model => model.Name) </th> <th> @Html.DisplayNameFor(model => model.Type) </th> <th> @Html.DisplayNameFor(model => model.Description) </th> <th></th> </tr> @foreach (var item in Model) { <tr> <td> @Html.DisplayFor(modelItem => item.Name) </td> <td> @Html.DisplayFor(modelItem => item.Type) </td> <td> @Html.DisplayFor(modelItem => item.Description) </td> <td> @Html.ActionLink("修改", "Edit", new { id = item.UserGroupId }) | <a href="javascript:void(0)" onclick="Delete(@item.UserGroupId,'@item.Name')" >删除</a> </td> </tr> } </table> </div> </div> <div class="clear"></div> <script type="text/javascript"> $("#GroupTypeList").change(function () { window.location.href = "/UserGroup/List/" + $(this).children("option:selected").val(); }) function Delete(id,name) { if (confirm("你确定要删除【" + name + "】吗?")) { $.post("@Url.Content("~/UserGroup/Delete")", {Id:id}, function (data) { if (data) { alert("删除【" + name + "】成功!"); location.reload(); } }); } } </script>
到此打完收工!
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
相关文章
.NET读写Excel工具Spire.Xls使用 Excel单元格控制(3)
这篇文章主要为大家详细介绍了.NET读写Excel工具Spire.Xls使用,Excel单元格控制,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-11-11asp页面和Asp.net页面传中文参数UrlEncode编码以及接收解码
在asp中加一个链接,指向asp.net网页,但asp.net的网址是经过HttpUtility.UrlEncode转换和HttpUtility.UrlDecode解码的,而asp的server.urlencode却和HttpUtility.UrlEncode的编码方式不一样.2010-04-04aspx文件格式使用URLRewriter实现静态化变成html
如何隐藏aspx文件格式,变成html,使用asp.net 开发的网页程序,使用URLRewriter.dll 实现静态化,接下来将介绍下具体操作步骤,感兴趣的朋友可以参考下2013-04-04Windows Server 2012 R2 或 2016无法安装.Net 3.5.1
这篇文章主要为大家详细介绍了Windows Server 2012 R2 或 2016 无法安装 .Net 3.5.1,具有一定的参考价值,感兴趣的小伙伴们可以参考一下2017-02-02asp.net实现利用反射,泛型,静态方法快速获取表单值到Model的方法
这篇文章主要介绍了asp.net实现利用反射,泛型,静态方法快速获取表单值到Model的方法,结合实例形式分析了asp.net中反射,泛型,静态方法给model赋值的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下2015-11-11
最新评论