which method is best for web application authentication?
FormsAuthentication or Identity Authentication Authorization
which method is best for web application authentication?
FormsAuthentication or Identity Authentication Authorization
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Muhammad Imran AnsariPosted Oct 13, 2022, 9:57 AM
FormsAuthentication came in ASP.NET 2 and ASP.NET Identity came with SignInManager in ASP.NET 5.
ASP.NET Identity is a new version of MembershipProvider. It offers a lot more features than legacy MembershipProvider.
For example:
If you do not need all those features, you can stick with FormsAuthentication which can be used without MembershipProvider.