Jack
Jack

Reputation: 10037

Is there any easy to implement webapp security/authorization/role library out there?

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

Answers (1)

Damien Dennehy
Damien Dennehy

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

Related Questions