Reputation: 31
Every business app requires user registration, profile management and an authorization system. I am looking for an open source .net system which I can usewithout much change. I saw a few in Java but could not found anything useful in .net. What can I use?
Upvotes: 3
Views: 3117
Reputation: 7762
DotNetNuke is faily well established and mature. It's the .NET equivalent of PHPNuke. It's a full blown CMS, but the beauty of it being open source is that you can pull out the bits you want.
Upvotes: 0
Reputation: 11214
The .NET Framework has a lot of this built in, most of which is in System.Web.Security. You should follow the Quickstarts, specifically the "Securing Your Application" one. Login controls and user registrations are included and customizable. There's really no need to add the complexity (and potential security hole) of a third-party solution here.
If you're using MVC, then check out the relevant section of the MVC Music Store tutorial.
Upvotes: 1
Reputation: 216
Check Microsoft’s open-source CMS platform called Orchard
http://www.orchardproject.net/
Upvotes: 0