I have an ASP.NET MVC3 project and I need to implement authentification for this one.
To authenticate the user, I want to use forms authentication with an existing user table which stores username/password. After that, with GlobalActionFilterAttribute, I would check if user has access to data he wants.
So, how can i easily implement forms authentication with personnal tables ?
Thanks in advance.