我想创建一个简单的应用程序,用户可以在其中注册自己的凭据,如名字、姓氏等。单击注册按钮后,它会将他带到邮件中以进行用户身份验证,在那里他将有一个链接和单击该链接,它将重定向到登录页面。我想实现它,但在 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; }
}