Hey
Im looking to have a login system on my asp.net mvc website and at first i thought i would just go with the FormAuhtorication and use the Out of The Box Account Controller that is created with every mvc project. Then search around at google and found that many people make their own Controller to control the Auhtorication.
I like to create my own database table for the user information, so i modified the AccountController a bit. But is it really the best way to go, by creating your own Controller to handle FormAuhtorication?
/thanks in advance
EDIT: Also should i just stick with the autogenerated database that is generated for auhtorcation or can i make my own? I really prefer the later.