摘要:
一、模型绑定的概念 二、模型绑定好处 2.1没有模型绑定的环境 using System.Web.Mvc; using System.ComponentModel.DataAnnotations; public class Person { [Display(Name="编号")] public S 阅读全文
摘要:
事实上,MVC中已经很好的封装了Json,让我们很方便的进行操作,而不像JS中那么复杂了。 MVC中: public JsonResult Test() { JsonResult json = new JsonResult { Data = new { Name = "zzl", Sex = "ma 阅读全文