程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> MVC4制作網站教程第三章 刪除用戶組操作3.4

MVC4制作網站教程第三章 刪除用戶組操作3.4

編輯:ASP.NET基礎

一、用戶
二、用戶組

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> 

到此打完收工! 

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved