在MVC中实现基本的增删改和传统的asp .net 程序有很大的不同,刚开始使用MVC还是有些不太适应,但是它的页面简洁也相当的不同,同时对服务器的访问性能上也有很大的提高。基于此,下面对我学习过程记录如下:

首先,使用VS创建一个以Internet为模板的项目,如下所示:

在“_Layout.cshtml”文件中引入相关脚本文件,此文件的路径如下:

修改成如下内容:

  1. 1: <head>
  1. 2: <title>@ViewBag.Title</title>
  1. 3: <link href="@Url.Content("~/Content/themes/base/jquery.ui.all.css")" rel="Stylesheet" type="text/css" />
  1. 4: <link href="@Url.Content("~/Content/Site.css")" rel="stylesheet" type="text/css" />
  1. 5: <script src="@Url.Content("~/Scripts/jquery-1.5.1.min.js")" type="text/javascript"></script>
  1. 1: 
  1. 2: <script src="@Url.Content("~/Scripts/jquery-ui-1.8.11.min.js")" type="text/javascript">
  1. 1: </script>
  1. 1: </script>
  1. 2: <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript">
  1. 1: </script>
  1. </script>
  1. 6: </head>

在Models文件夹下,新建类文件“Note.cs”,内容如下:

  1. 1: public class Note
  1. 2: {
  1. 3: public int Id { get; set; }
  1. 4: public string Title { get; set; }
  1. 5: public string Body { get; set; }
  1. 6: }

再创建类文件“NoteManager.cs”,内容如下:

  1. 1: public class NoteManager
  1. 2: {
  1. 3: public Collection<Note> Notes
  1. 4: {
  1. 5: get
  1. 6: {
  1. 7: if (HttpRuntime.Cache["Notes"] == null)
  1. 8: loadInitialData(); return (Collection<Note>)HttpRuntime.Cache["Notes"];
  1. 9: }
  1. 10: }
  1. 11: private void loadInitialData()
  1. 12: {
  1. 13: var notes = new Collection<Note>
  1. 14: {
  1. 15: new Note
  1. 16: {
  1. 17: Id = 1,
  1. 18: Title = "Set DVR for Sunday",
  1. 19: Body = "Don't forget to record Game of Thrones!"
  1. 20: },
  1. 21: new Note
  1. 22: {Id = 2, Title = "Read MVC article", Body = "Check out the new iwantmymvc.com post"},
  1. 23: new Note
  1. 24: {
  1. 25: Id = 3,
  1. 26: Title = "Pick up kid",
  1. 27: Body = "Daughter out of school at 1:30pm on Thursday. Don't forget!"
  1. 28: },
  1. 29: new Note {Id = 4, Title = "Paint", Body = "Finish the 2nd coat in the bathroom"}
  1. 30: };
  1. 31: HttpRuntime.Cache["Notes"] = notes;
  1. 32: } public Collection<Note> GetAll() { return Notes; }
  1. 33: public Note GetById(int id)
  1. 34: {
  1. 35: return Notes.Where(i => i.Id == id).FirstOrDefault();
  1. 36: }
  1. 37: public int Save(Note item)
  1. 38: {
  1. 39: if (item.Id <= 0)
  1. 40: return SaveAsNew(item);
  1. 41: var existingNote = Notes.Where(i => i.Id == item.Id).FirstOrDefault();
  1. 42: if(existingNote == null)
  1. 43: {
  1. 44: return -1;
  1. 45: }
  1. 46: 
  1. 47: existingNote.Title = item.Title;
  1. 48: existingNote.Body = item.Body;
  1. 49: return existingNote.Id;
  1. 50: }
  1. 51: private int SaveAsNew(Note item)
  1. 52: {
  1. 53: item.Id = Notes.Count + 1; Notes.Add(item); return item.Id;
  1. 54: }
  1. 55: }

修改“HomeController”为如下内容:

  1. 1: public class HomeController : Controller
  1. 2: {
  1. 3: public ActionResult Index()
  1. 4: {
  1. 5: return View();
  1. 6: }
  1. 7: [OutputCache(Duration = 0)]
  1. 8: public ActionResult List()
  1. 9: {
  1. 10: var manager = new NoteManager();
  1. 11: var model = manager.GetAll();
  1. 12: return PartialView(model);
  1. 13: }
  1. 14: [OutputCache(Duration = 0)]
  1. 15: public ActionResult Create()
  1. 16: {
  1. 17: var model = new Note();
  1. 18: return PartialView("NoteForm", model);
  1. 19: }
  1. 20: 
  1. 21: [OutputCache(Duration = 0)]
  1. 22: public ActionResult Edit(int id)
  1. 23: {
  1. 24: var manager = new NoteManager();
  1. 25: var model = manager.GetById(id);
  1. 26: return PartialView("NoteForm", model);
  1. 27: }
  1. 28: [HttpPost]
  1. 29: public JsonResult Save(Note note)
  1. 30: {
  1. 31: var manager = new NoteManager();
  1. 32: var noteId = manager.Save(note);
  1. 33: return Json(new { Success = noteId > 0 });
  1. 34: }
  1. 35: }

对项目编译一下,再新建一个“NoteForm”View,如下图所示:

注意:上图中选择部分视图和使用强类型的View

修改后的内容如下所示:

  1. 1: @model MvcSample.Models.Note
  1. 2: <script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
  1. 1: 
  1. 2: <script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript">
  1. 1: </script>
  1. 2: 
  1. 3: @using (Html.BeginForm("Save", "Home", FormMethod.Post, new { id = "NoteForm" }))
  1. 4: {
  1. 5:
  1. 6: 
  1. 7: <div>
  1. 8: @Html.ValidationSummary(true, "输入的内容有错,请纠正所有错误,再提交.")
  1. 9: @Html.HiddenFor(m => m.Id)
  1. 10: <div class="editor-label">
  1. 11: @Html.LabelFor(m => m.Title, "标题")
  1. 12: </div>
  1. 13: <div class="editor-field">
  1. 14: @Html.TextBoxFor(m => m.Title, new { data_val = "true", data_val_required = "标题不能为空。" })
  1. 15: @Html.ValidationMessageFor(m => m.Title)
  1. 16: </div>
  1. 17: 
  1. 18: <div class="editor-label">
  1. 19: @Html.LabelFor(m => m.Body, "内容")
  1. 20: </div>
  1. 21: <div class="editor-field">
  1. 22: @Html.TextBoxFor(m => m.Body, new { data_val = "true", data_val_required = "内容不能为空。" })
  1. 23: @Html.ValidationMessageFor(m => m.Body)
  1. 24: </div>
  1. 25:
  1. 26: </div>
  1. 27: }
  1. 28: 
  1. 29: <script type="text/javascript" language="javascript">
  1. 30: $("#NoteForm").submit(function () {
  1. 31: $("#NoteForm").validate();
  1. 32: return false;
  1. 33: });
  1. </script>

再新建“List.cshtml”视图,也是部分视图,如下图所示: 

修改后的内容如下:

  1. 1: @model IEnumerable<MvcSample.Models.Note>
  1. 2: <ul class="NotesList">
  1. 3: @foreach (var note in Model)
  1. 4: {
  1. 5: <li> @note.Title <br /> @note.Body <br />
  1. 6: <span class="EditLink" noteid="@note.Id">Edit</span>
  1. 7: </li>
  1. 8: }
  1. 9: </ul>

在“Scripts”目录下新建脚本文件“Common.js”,并加入如下内容:

  1. 1: function DialogObject(dialogId, formId, addUrl, editUrl, saveUrl, ajaxPostFunction, loadSuccessCallBack) {
  1. 2: dialogId = "#" + dialogId;
  1. 3: formId = "#" + formId;
  1. 4: Success = 0;
  1. 5: AlertError = 2;
  1. 6: this.saveUrl = saveUrl;
  1. 7: this.addUrl = addUrl;
  1. 8: this.editUrl = editUrl;
  1. 9: this.ajaxPostFunction = ajaxPostFunction;
  1. 10: this.width = 440;
  1. 11: this.height = 330;
  1. 12: 
  1. 13: 
  1. 14: this.dialogLoad = function () {
  1. 15: $(dialogId).dialog({
  1. 16: autoOpen: false, //对话框的是否自动打开
  1. 17: width: this.width, //宽高
  1. 18: height: this.height,
  1. 19: modal: true, //模态对话框
  1. 20: buttons: {//自定义对话框的按钮信息
  1. 21: "保存": this._saveFunction,
  1. 22: "返回": this._closedialog()
  1. 23: }
  1. 24: });
  1. 25: };
  1. 26: 
  1. 27: this.loadEdit = function (id) {
  1. 28: 
  1. 29: $(dialogId).html("")
  1. 30: .dialog("option", "title", "编辑")
  1. 31: .load(editUrl + "/" + id, this._openDialog());
  1. 32: 
  1. 33: };
  1. 34: this.loadAdd = function () {
  1. 35: $(dialogId).html("")
  1. 36: .dialog("option", "title", "新增")
  1. 37: .load(addUrl, this._openDialog());
  1. 38: };
  1. 39: this._openDialog = function () {
  1. 40: return new Function("$('" + dialogId + "').dialog('open');");
  1. 41: };
  1. 42: 
  1. 43: this._closedialog = function () {
  1. 44: return new Function("$('" + dialogId + "').dialog('close');");
  1. 45: };
  1. 46: 
  1. 47: this.postFunction = function (formData, successCallback) {
  1. 48: $.post(saveUrl,
  1. 49: formData,
  1. 50: function (data, textStatus) {
  1. 51: switch (textStatus) {
  1. 52: case
  1. 53: "timeout":
  1. 54: break;
  1. 55: case "error":
  1. 56: break;
  1. 57: case "notmodified":
  1. 58: break;
  1. 59: case "success":
  1. 60: successCallback($(dialogId), $(formId), data);
  1. 61: break;
  1. 62: case "parsererror":
  1. 63: break;
  1. 64: default:
  1. 65: break;
  1. 66: }
  1. 67: 
  1. 68: });
  1. 69: 
  1. 70: };
  1. 71: defaultAjaxPostFunction = this.postFunction;
  1. 72:
  1. 73: this._saveFunction = function () {
  1. 74: var b = $(formId);
  1. 75: b.submit();
  1. 76: if (b.validate().numberOfInvalids() > 0) {
  1. 77: return;
  1. 78: }
  1. 79: if (ajaxPostFunction != null)
  1. 80: ajaxPostFunction();
  1. 81: else
  1. 82: defaultAjaxPostFunction($(formId).serialize(), function (dlgObject, formObject, data) {
  1. 83: if (data.Success == true) {
  1. 84: dlgObject.dialog("close");
  1. 85: if (loadSuccessCallBack != null) {
  1. 86: loadSuccessCallBack();
  1. 87: }
  1. 88: }
  1. 89: // else if (data.Success == AlertError) {
  1. 90: // alert(data.data);
  1. 91: // }
  1. 92: // else {
  1. 93: // formObject.html(data.data);
  1. 94: // }
  1. 95: });
  1. 96: };
  1. 97: 
  1. 98: 
  1. 99: }

修改默认的Index.cshtml文件内容如下所示:

  1. 1: @{
  1. 2: ViewBag.Title = "Home Page";
  1. 3: }
  1. 4: <h2>
  1. 5: Notes</h2>
  1. 6: <div id="NoteListBlock">
  1. 7: </div>
  1. 8: <span class="AddLink">Add New Note</span>
  1. 9: <div id="NoteDialog" title="" class="Hidden">
  1. 10: </div>
  1. 11: <script src="@Url.Content("~/Scripts/Common.js?verion=1")" type="text/javascript"></script>
  1. 1: 
  1. 2: <script type="text/javascript">
  1. 3: var noteDialog = new DialogObject("NoteDialog", "NoteForm", "/Home/Create", "/Home/Edit", "/Home/Save", null, LoadList);
  1. 4: $(function() {
  1. 5: noteDialog.dialogLoad();
  1. 6: $(".EditLink").live("click", function () {
  1. 7: var id = $(this).attr("noteid");
  1. 8: noteDialog.loadEdit(id);
  1. 9: });
  1. 10: $(".AddLink").click(function () {
  1. 11: noteDialog.loadAdd();
  1. 12: });
  1. 13: 
  1. 14: LoadList();
  1. 15: });
  1. 16: 
  1. 17: function LoadList() {
  1. 18: LoadMvcPage("/Home/List");
  1. 19: }
  1. 20: 
  1. 21: function AddRecord() {
  1. 22: noteDialog.loadAdd();
  1. 23: return false;
  1. 24: }
  1. 25: 
  1. 26: function LoadMvcPage(url) {
  1. 27: $("#NoteListBlock").load(url);
  1. 28: }
  1. </script>

在Contents/site.css下加入如下内容:

  1. 1: .EditLink
  1. 2: {
  1. 3: color: Blue;
  1. 4: cursor: pointer;
  1. 5: }
  1. 6: .EditLink:hover
  1. 7: {
  1. 8: text-decoration: underline;
  1. 9: }
  1. 10: .AddLink
  1. 11: {
  1. 12: color: Blue;
  1. 13: cursor: pointer;
  1. 14: }
  1. 15: .AddLink:hover
  1. 16: {
  1. 17: text-decoration: underline;
  1. 18: }
  1. 19: #NoteForm label
  1. 20: {
  1. 21: display: block;
  1. 22: margin-bottom: 6px;
  1. 23: }
  1. 24: #NoteForm label > span
  1. 25: {
  1. 26: font-weight: bold;
  1. 27: }
  1. 28: #NoteForm input[type=text]
  1. 29: {
  1. 30: width: 350px;
  1. 31: }
  1. 32: #NoteForm textarea
  1. 33: {
  1. 34: width: 350px;
  1. 35: height: 80px;
  1. 36: }
  1. 37: 
  1. 38: .Hidden
  1. 39: {
  1. 40: display: none;
  1. 41: }

现在来运行程序,效果如下:

新增:

编辑:

下一篇,将进行分页查询的实现

备注:如果弹出对话框显示不正常,请检查Content下的样式文件是否存在。

MVC 3 基本操作增加修改的更多相关文章

  1. Android webview中cookie增加/修改

    最近项目需求中,需要满足往webview传递cookie,而且cookie需要增加修改: public class MainActivity extends Activity { private We ...

  2. Oracle 增加修改删除字段

    Oracle 增加修改删除字段 添加字段的语法:alter table tablename add (column datatype [default value][null/not null],…. ...

  3. 用dom4j修改xml(增加修改节点)

    用dom4j修改xml(增加修改节点) 博客分类: Java XMLJavaMyeclipseServlet  使用dom4j修改解析xml,xml文件的位置是配置在xml.properties文件中 ...

  4. C# mvc读取模板并修改上传到web

    C# mvc读取模板并修改上传到web 后台: public FileResult GetXls() { FileStream fs = new FileStream(System.Web.HttpC ...

  5. Spring MVC 4.2 增加 CORS 支持

    转自:http://blog.csdn.net/z69183787/article/details/53102112 Spring MVC 4.2 增加 CORS 支持 跨站 HTTP 请求(Cros ...

  6. 【ES】Java High Level REST Client 使用示例(增加修改)

    ES提供了多种编程语言的链接方式,有Java API,PHP API,.NET API 官网可以详细了解 https://www.elastic.co/guide/en/elasticsearch/c ...

  7. ASP.NET MVC程序中动态修改form的Action值

    在练习ASP.NET MVC时,为了实现一个小功能,POST数据至服务器执行时,需要动态修改form的action值. 下面Insus.NET列举一个例子来演示它.让它简单,明白易了解. 你可以在控制 ...

  8. hibernate 批量增加 修改 删除

    4.2  Hibernate的批量处理 Hibernate完全以面向对象的方式来操作数据库,当程序里以面向对象的方式操作持久化对象时,将被自动转换为对数据库的操作.例如调用Session的delete ...

  9. Oracle 增加修改删除字段与添加注释

    添加字段的语法:alter table tablename add (column datatype [default value][null/not null],….); 修改字段的语法:alter ...

随机推荐

  1. 获取任意可序列化对象的Xml字符串,方便在日志中查看任一所感兴趣的对象。

    代码: public static string GetLoggingString(this object obj) { using (var stream = new MemoryStream()) ...

  2. Sea.js入门

    本文只是seajs的入门贴.要详细了解,请看GitHub主页上的相关链接,精彩不断,精选几篇: 前端模块化开发的价值 前端模块化开发的历史 ID和路径匹配原则 与RequireJS的异同 模块的加载启 ...

  3. 户外物理渗透:终端机,客户端的web测试思路

    现在的客户端界面越做越好看了,很多用到了web技术,轻便.界面炫.更新快,但是这样web的缺点也就出来了,就是不稳定,容易受用户等因素影响. 因为很多客户端web是内嵌的,内部通信,所以很多对安全的考 ...

  4. [geeksforgeeks] Count the number of occurrences in a sorted array

    Count the number of occurrences in a sorted array Given a sorted array arr[] and a number x, write a ...

  5. UML用例图(转载)

    概述: 为了模拟系统最重要的方面是捕捉到的动态行为.为了阐明位详细信息,动态的行为意味着它运行时/操作系统的行为. 因此,只有静态的行为是不够的模拟系统,而动态的行为,更重要的是比静态行为.在UML模 ...

  6. nginx配置解读

    nginx.conf基本配置 ##Start. ##Basic 基础配置 user www www; #运行用户 worker_processes ; #启动进程,通常设置成和cpu的数量相等 wor ...

  7. mongodb 主从服务器

    @set mongod=..\bin\mongod.exe set keyFile=key.key if not exist %keyFile% ( echo 123456>%keyFile% ...

  8. 迁移到MariaDB galera

    迁移到MariaDB galera [已注销] [已注销] -- :: [安装] ====== https://downloads.mariadb.org/mariadb/repositories/ ...

  9. JAVA 异常对于性能的影响

    陶炳哲 - MAY 12, 2015 在对OneAPM的客户做技术支持时,我们常常会看到很多客户根本没意识到的异常.在消除了这些异常之后,代码运行速度与以前相比大幅提升.这让我们产生一种猜测,就是在代 ...

  10. ExtJs之单选及多选框

    坚持 <!DOCTYPE html> <html> <head> <title>ExtJs</title> <meta http-eq ...