一.添加模型 public class Account { public int ID { get; set; } [Display(Name = "姓名")] //设置要显示的字段名 [Required(ErrorMessage = "您需要填写{0}")] //设置为必须字段 已经错误提示 [StringLength(, MinimumLength = )] //设置最大长度和最小长度 public string Name { get; set; } [Disp…
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace MvcValidateDemo.Controllers { public class AjaxController : Controller { // // GET: /Ajax/ public ActionResult Index() { return View(…
情景1:已经存在form对象了,动态为form增加对象并提交 function formAppendSubmit(){ var myform=$('#newArticleForm'); //得到form对象 var tmpInput=$("<input type='text' name='blogArticleForm.articleContent'/>"); tmpInput.attr("value", myUeditor.window.getCont…