In my system I need to have two types of authentication for Common User that will register and etc ... and another for the administrator my question is how do I differentiate the two authentication using FormsAuthentication, I believe it will have some conflict for example when I store the values in:
FormsAuthentication.SetAuthCookie(user.UserName, model.RememberMe);
I searched for some examples on Google but did not get much success! I understood more or less that it would be necessary to create different rules.
Anything will be welcome! examples, links, articles ...