up vote 5 down vote favorite
14
share [g+] share [fb]

I'm not very experienced at using ASP.NET, but I've used built in membership providers for simple WebForms application, and I found them PITA when trying to extend the way they work (add/remove few fields and redo controls accordingly). Now I'm preparing for MVC (ASP.NET MVC or Monorail based) project, and I'm thinking - is there a better way to handle users? Have them log in/log out, keep certain parts of the site available to certain users (like logged in users, or something similar to "share this with friends" feature of many social networking sites, where you can designate users that have access to certain things. How best to acheave this in the way that will scale well?

link|improve this question

72% accept rate
Have u tried using Rhino Security? any success with that? – Quintin Par Feb 6 '10 at 14:06
No I have not... – Krzysztof Koźmic Feb 8 '10 at 17:33
feedback

5 Answers

up vote 13 down vote accepted

The Membership Provider in ASP.NET is very handy and extensible. It's simple to use the "off the shelf" features like Active Directory, SQL Server, and OpenLDAP. The main advantage is the ability to not reinvent the wheel. If your needs are more nuanced than that you can build your own provider by extending overriding the methods that the ASP.NET controls use.

I am building my own Custom Membership Provider for an e-commerce website. Below are some resources for more information on Membership Providers. I asked myself the same questions when I start that project.

These resources were useful to me for my decision:

I personally don't think there is a need to use something other than the builtin stuff unless you either want to abuse yourself or your needs are impossible to satisfy by anything the builtin functionality.

link|improve this answer
feedback

Have you considered using ActiveDirectory for this? Or, perhaps, OpenLDAP? You can manage each user's groups, permissions, 'authority', and so on.

link|improve this answer
I can't use that. It's a web-facing site, and its users will have nothing to do with Active Directory users – Krzysztof Koźmic Oct 3 '08 at 21:05
feedback

It depends.

If it's an internal application, Active Directory or OpenLDAP might be the way to go.

If it's a public application, I suggest to look at aspnet_regsql. You will be able to setup a database with Authentication in no time.

link|improve this answer
feedback

I guess, I wasn't clear on that. To rephrase my question: Would you use standard ASP.NET membership provider for a web-facing app, or something else (what)?

link|improve this answer
feedback

keep certain parts of the site available to certain users (like logged in users, or something similar to "share this with friends" feature of many social networking sites

I guess you must custom code your thing.

I also do not like the asp.net Membership and custom code my membership needs...

A nice membership provider is a really missing thing in asp.net side...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.