I have a standard ASP.NET website. Anyone can read / view any page (except the admin section), but when someone wants to contribute, they must be registered. As well as sites with lots of resources.
So, if I have my login fields or username / password / submit input fields, why do I want forms to be included, and not just? what does auth give me, which has its own code that checks my user database / pass and my own two input fields + submit button, does it work fine?
(NOTE: I really don't like the asp.net membership element that creates all these tables and usp in the database, so please do not suggest using this).
Like my code, when I authenticate a user (with my own database code), I manually create my identity, etc.
Is all this required? What is the main purpose of this?
Hooray!
source
share