Reputation: 10037
Is there any security/authorization/role for asp.net that is simpler and easier to implement than the default ASP.net membership?
Upvotes: 2
Views: 69
Reputation: 4064
I've never been a fan of membership, but implementing authorization and role-based security in ASP.NET is easy and works quite well.
How to implement Authentication (MS KB301240)
How to implement Role-Based Security (MS KB311495)
Upvotes: 1