12 2017 档案
MVC之CodeFirst
摘要:1.建立MVC项目》NuGet安装EF 2.建立模型: 模型需要引用命名空间: using System.ComponentModel.DataAnnotations;using System.ComponentModel.DataAnnotations.Schema; 3.建立数据库类 DbCon
阅读全文
MVC的Forms登录验证
摘要:第一步:修改web.config配置 在 <system.web>节点下加入配置:未登录的用户跳转到/Home/Login,登录后跳转到/Home/UserCenter,登录后票证记录到cookie,cookie超时时间2880分钟。<allow users="?" />是允许匿名访问的意思。 fo
阅读全文