91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MVC4制作網站在如何瀏覽用戶組操作

發布時間:2021-09-16 16:38:48 來源:億速云 閱讀:151 作者:柒染 欄目:開發技術

本篇文章為大家展示了MVC4制作網站在如何開發瀏覽用戶組操作,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

一、用戶

二、用戶組

2.1瀏覽用戶組

在開始做瀏覽用戶組之前,首先要考慮權限問題。瀏覽、添加、修改、刪除用戶組必須是系統管理員才能進行的操作,Action上必須驗證是否是管理員,因此添加一個AdminAuthorize。在Extensions文件夾上點右鍵添加類"AdminAuthorizeAttribute”,繼承自AuthorizeAttribute。

重寫AuthorizeCore(HttpContextBase httpContext),里面什么代碼都不寫直接返回true。

因為管理員這塊的功能還沒做,目的是不驗證管理員就可以進行添加、刪除、瀏覽,權限驗證代碼等以后寫管理員這塊時再加。

using System;

namespace System.Web.Mvc
{
 /// <summary>
 /// 管理員權限驗證
 /// </summary>
 public class AdminAuthorizeAttribute:AuthorizeAttribute
 {
 protected override bool AuthorizeCore(HttpContextBase httpContext)
 {
 return true;
 }
 }
}

修改[List]Action,給其加上管理員權限驗證。

/// <summary>
 /// 用戶組列表
 /// </summary>
 /// <param name="Id">用戶組類型</param>
 /// <returns></returns>
 [AdminAuthorize]
 public ActionResult List(int Id = -1)
 {
 userGroupRsy = new UserGroupRepository();
 IQueryable<UserGroup> _userGroup;
 if (Id == -1) _userGroup = userGroupRsy.List();
 else _userGroup = userGroupRsy.List(Id);
 return View(_userGroup);
 }

id是用戶組類型,因為用戶組類型是枚舉類型,從0起始,所以這里瀏覽地址不帶id參數時設為-1顯示所有用戶組,當如數id參數時顯示指定類型的用戶組。

右鍵添加強類型“UserGroup”視圖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") </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 }) |
 @Html.ActionLink("刪除", "Delete", new { id = item.UserGroupId })
  </td>
 </tr>
 }
 </table>
 </div>
</div>
<div class="clear"></div>

運行瀏覽器里看下效果,還行。

現在應該添加一個下拉菜單,可以選擇不同的用戶組類型來顯示相應類型的用戶組

在【UserGroupController】添加屬性TypeSelectList

/// <summary>
 /// 用戶組類型的SelectList列表
 /// </summary>
 public List<SelectListItem> TypeSelectList
 {
 get
 {
 List<SelectListItem> _items = new List<SelectListItem>();
 _items.Add(new SelectListItem { Text = UserGroupType.Anonymous.ToString(), Value = ((int)UserGroupType.Anonymous).ToString() });
 _items.Add(new SelectListItem { Text = UserGroupType.Limited.ToString(), Value = ((int)UserGroupType.Limited).ToString() });
 _items.Add(new SelectListItem { Text = UserGroupType.Normal.ToString(), Value = ((int)UserGroupType.Normal).ToString() });
 _items.Add(new SelectListItem { Text = UserGroupType.Special.ToString(), Value = ((int)UserGroupType.Special).ToString() });
 return _items;
 }
 }

修改[List]Action代碼

/// <summary>
 /// 用戶組列表
 /// </summary>
 /// <param name="Id">用戶組類型</param>
 /// <returns></returns>
 [AdminAuthorize]
 public ActionResult List(int Id = -1)
 {
 userGroupRsy = new UserGroupRepository();
 IQueryable<UserGroup> _userGroup;
 if (Id == -1) _userGroup = userGroupRsy.List();
 else _userGroup = userGroupRsy.List(Id);
 var _typeLists = TypeSelectList;
 _typeLists.Insert(0, new SelectListItem { Text = "全部", Value = "-1" });
 if (_typeLists.Any(t => t.Value == Id.ToString())) _typeLists.SingleOrDefault(t => t.Value == Id.ToString()).Selected = true;
 ViewData.Add("GroupTypeList",_typeLists);
 return View(_userGroup);
 }

在L.cshtml視圖里@Html.ActionLink("添加用戶組", "Add", "UserGroup")后面添加
用戶組類型:@Html.DropDownList("GroupTypeList")

底部添加

<script type="text/javascript">
 $("#GroupTypeList").change(function () {
 
 window.location.href = "/UserGroup/List/" + $(this).children("option:selected").val();
 })
</script>

完成后的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 }) |
 @Html.ActionLink("刪除", "Delete", new { id = item.UserGroupId })
  </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();
 })
</script>

完成,瀏覽器中查看一下

MVC4制作網站在如何瀏覽用戶組操作

上述內容就是MVC4制作網站在如何開發瀏覽用戶組操作,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

保亭| 化州市| 轮台县| 清丰县| 图木舒克市| 南丰县| 都江堰市| 定日县| 平远县| 武穴市| 湖州市| 伊吾县| 嘉鱼县| 麻栗坡县| 漯河市| 象山县| 太保市| 仪征市| 迁安市| 张家港市| 宜州市| 城固县| 淮安市| 滨州市| 威远县| 合作市| 黔西| 会宁县| 侯马市| 化隆| 鹤岗市| 清苑县| 昔阳县| 麻栗坡县| 腾冲县| 汝城县| 石城县| 沙河市| 名山县| 临邑县| 陆丰市|