html5 html5Validate实现表单验证

html代码

@{
    Layout = null;
}





    
    Index
    
    
    


    
text
password
password
radio
email
multiple email
url
number
range
date
time
month
week
datetime-local


controller代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;

namespace WebApplication2.Controllers
{
    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }
        [HttpPost]
        public JsonResult DoSubmit(StudentModel model)
        {
            return Json(model);
        }
    }
    public class StudentModel
    {
        public string UserName { get; set; }
        public string Password { get; set; }
        public string ConfirmPassword { get; set; }
    }
}


你可能感兴趣的:(html5)