【发布时间】:2013-06-29 12:36:00
【问题描述】:
我想创建一个简单的应用程序,用户可以在其中注册自己的凭据,如名字、姓氏等..单击注册按钮后,它会将他带到邮件中,以便他将拥有的用户身份验证一个链接并单击该链接,它将重定向到登录页面。我想实现它,但在 MVC3 中使用 3 层架构。我通过选择 MVC 模板创建了项目并将其命名为演示文稿并获取 BLL 和 DAL我应该怎么办? 我已经创建了我的模型:
public class Register
{
public int Id { get; set; }
public string First_Name { get; set; }
public string Last_Name { get; set; }
public string Email_Address { get; set; }
public bool Accept_Term { get; set; }
public bool Male { get; set; }
public bool Female { get; set;}
public string Current_Location { get; set; }
}
【问题讨论】:
标签: asp.net asp.net-mvc