MVC4制作网站教程第三章 添加用户组操作3.2

所属分类: 网络编程 / ASP.NET 阅读数: 613
收藏 0 赞 0 分享

一、用户

二、用户组

2.1浏览用户组

2.2添加用户组

修改[Add]Action

/// <summary>
    /// 添加用户组
    /// </summary>
    /// <returns></returns>
    [AdminAuthorize]
    public ActionResult Add()
    {
      ViewData.Add("Type", TypeSelectList);
      return View();
    }

添加强类型视图

完成后代码如下:

@model 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>
  @using (Html.BeginForm())
  {
   @Html.ValidationSummary(true)
   <fieldset>
    <legend>用户组资料</legend>

    @Html.HiddenFor(model => model.UserGroupId)
    <ul>
     <li>
      <div class="editor-label">
       @Html.LabelFor(model => model.Type)
      </div>
      <div class="editor-field">
       @Html.DropDownList("Type")
      </div>
     </li>
     <li>
      <div class="editor-label">
       @Html.LabelFor(model => model.Name)
      </div>
      <div class="editor-field">
       @Html.EditorFor(model => model.Name)
       @Html.ValidationMessageFor(model => model.Name)
      </div>
     </li>
     <li>
      <div class="editor-label">
       @Html.LabelFor(model => model.Description)
      </div>
      <div class="editor-field">
       @Html.EditorFor(model => model.Description)
       @Html.ValidationMessageFor(model => model.Description)
      </div>
     </li>
     <li>
      <div class="editor-label">
      </div>
      <div class="editor-field">
       <input type="submit" value="保存" />
      </div>
     </li>
    </ul>
   </fieldset>
  }
 </div>
</div>
<div class="clear"></div>
@section Scripts {
 @Scripts.Render("~/bundles/jqueryval")
}

修改用户组添加处理动作[Add(UserGroup userGroup)]Action,完成后的代码

[HttpPost]
  [AdminAuthorize]
  public ActionResult Add(UserGroup userGroup)
  {
   userGroupRsy = new UserGroupRepository();
   if (userGroupRsy.Add(userGroup))
   {
    Notice _n = new Notice { Title = "添加用户组成功", Details = "您已经成功添加["+userGroup.Name+"]用户组!", DwellTime = 5, NavigationName = "用户组列表", NavigationUrl = Url.Action("List", "UserGroup") };
    return RedirectToAction("ManageNotice", "Prompt", _n);
   }
   else
   {
    Error _e = new Error { Title = "添加用户组失败", Details = "在添加用户组时,未能保存到数据库", Cause = "系统错误", Solution = Server.UrlEncode("<li>返回<a href='" + Url.Action("Add", "UserGroup") + "'>添加用户</a>页面,输入正确的信息后重新操作</li><li>联系网站管理员</li>") };
    return RedirectToAction("ManageError", "Prompt", _e);
   }
  }

浏览器中查看一下

输入资料测试一下,可以添加资料。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

asp.net 页面间传值与跳转的区别

通过Server.Transfer("b.aspx") 与Response.Redirect("b.aspx")的区别
收藏 0 赞 0 分享

ASP.NET Gridview与checkbox全选、全不选实现代码

ASP.NET Gridview checkbox全选与全不选实现代码,其实原理就是利用js来实现的,但需要简单的设置下回传。
收藏 0 赞 0 分享

ASP.NET DropDownList控件的使用方法

ASP.NET DropDownList控件的使用方法,学习asp.net的朋友没用过这个控件的朋友可以参考下。
收藏 0 赞 0 分享

一些.NET对多线程异常处理技巧分享

多线程应用,在实际的项目或产品开发中,原则上来说,应该尽量避免,但是在强调用户体验的要求下或开发平台的限制下(如 Silverlight Socket 通讯),我们不得不用多线程。
收藏 0 赞 0 分享

ASP.NET MVC运行出现Uncaught TypeError: Cannot set property __MVC_FormValidation of null的解决方法

同一相站点,有些页面的客户端验证能工作,而有些死活不行。打开页面就出现Uncaught TypeError: Cannot set property __MVC_FormValidation of null错误
收藏 0 赞 0 分享

asp.net 通用分页显示辅助类(改进版)

在使用ASP.NET编程时,如果不用控件的默认分页功能,想自己搞一个,可以看看本文的asp.net通用分页显示辅助类哦。
收藏 0 赞 0 分享

微软 Visual Studio 2010官方下载地址给大家

昨天VS2010在网上报道都已经发布了,现在今天在网上找到Visual Studio 2010官方下载地址,提供给大家下载。
收藏 0 赞 0 分享

Javascript 直接调用服务器C#代码 ASP.NET Ajax实例

近来总有一些朋友会问到一些入门的问题,把这些问题整理一下,写出来。在以前的文章里,曾经利用纯JS编写过Ajax引擎,在真正开发的时候,大家都不喜欢以这种低效率的方式开发,利用MS Ajax的集成的引擎,可以简单不少工作。
收藏 0 赞 0 分享

ASP.NET 页面刷新的实现方法(包括html,js)

ASP.NET 页面刷新的实现方法,比较全了, 包括html与js下的实现方法。
收藏 0 赞 0 分享

asp.net 无刷新翻页就是这么简单

前两天看了一个自定义分页控件,和AspNetPager一样是实现IPostBackEventHandler接口,不过简洁许多,就想能不能实现ICallbackEventHandler接口做到无刷新分页呢?想到了就马上去做,终于,设想变成了现实!!
收藏 0 赞 0 分享
查看更多