溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MVC4制作網(wǎng)站中如何刪除用戶組操作

發(fā)布時(shí)間:2021-09-16 16:42:10 來(lái)源:億速云 閱讀:139 作者:柒染 欄目:開(kāi)發(fā)技術(shù)

本篇文章給大家分享的是有關(guān)MVC4制作網(wǎng)站中如何刪除用戶組操作,小編覺(jué)得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說(shuō),跟著小編一起來(lái)看看吧。

一、用戶
二、用戶組

2.1瀏覽用戶組 
2.2添加用戶組 
2.3修改用戶組 
2.4刪除用戶組 

刪除用戶組相對(duì)簡(jiǎn)單些,不用單獨(dú)的頁(yè)面,直接在瀏覽頁(yè)面點(diǎn)擊刪除時(shí),彈出確認(rèn)刪除對(duì)話框,點(diǎn)擊確認(rèn),用jquery post刪除。 

打開(kāi)【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方式刪除。 

打開(kāi)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("你確定要?jiǎng)h除【" + name + "】嗎?")) {
 $.post("@Url.Content("~/UserGroup/Delete")", {Id:id}, function (data) {
 if (data) {
 alert("刪除【" + name + "】成功!");
 location.reload();
 }
 });
 }
 }

完成后整個(gè)List.cshtml的代碼如下: 

@model IEnumerable<Ninesky.Models.UserGroup>

@{
 ViewBag.Title = "用戶組列表";
 Layout = "~/Views/Layout/_Manage.cshtml";
}
<div class="left">
 <div class="top"></div>
 左側(cè)列表
</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("你確定要?jiǎng)h除【" + name + "】嗎?")) {
 $.post("@Url.Content("~/UserGroup/Delete")", {Id:id}, function (data) {
 if (data) {
 alert("刪除【" + name + "】成功!");
 location.reload();
 }
 });
 }
 }
</script>

到此打完收工! 

以上就是MVC4制作網(wǎng)站中如何刪除用戶組操作,小編相信有部分知識(shí)點(diǎn)可能是我們?nèi)粘9ぷ鲿?huì)見(jiàn)到或用到的。希望你能通過(guò)這篇文章學(xué)到更多知識(shí)。更多詳情敬請(qǐng)關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI