摘要:
WebMatrix.WebSecurity默认只会创建一个userid和username的UserProfile表,而我们可能需要很多别的user属性,怎么办呢?比如要增加一个Sex属性1。在数据库UserProfile表中增加Sex属性,bit类型2。在RegisterModel中增加Sex属性 public class RegisterModel { [Required] [Display(Name = "用户名")] public string UserName { get; set; } [Required] ... 阅读全文
摘要:
MVC中的属性常用于一些HttpPost类型的Action,比如在ASP.net MVC sample中,login就用了这个属性View Code // // POST: /Account/Login [HttpPost] [AllowAnonymous] [ValidateAntiForgeryToken] public ActionResult Login(LoginModel model, string returnUrl) { if (ModelState.IsVa... 阅读全文