Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Flexible ACL in ASP.NET

I'm building an application for which I want to use roles managment applicable to individual pages. That is, restrict users' access to pages based on their roles. These roles are stored into the database, as the users. This is the PHP way of doing things and I'm trying to port this to ASP.NET

What I need is that someone can point me to the right resources to look at to acomplish the above task. Until now I have not been able to find what I am looking for.

Thank you.

like image 801
Interfector Avatar asked Feb 20 '10 12:02

Interfector


1 Answers

I think you should checkout the ASP.NET membership provider model:

http://msdn.microsoft.com/en-us/library/sx3h274z.aspx

like image 199
b-rad Avatar answered Oct 12 '22 11:10

b-rad