Is there any open source project similar to django admin but in .NET?

I would like to know if there are any reusable / plug-in modules that implement CRUD operations for users, groups, roles and permissions that can be integrated into .NET web applications.

+2


source to share


3 answers


For starters, ASP.NET includes Membership, Role, and Profile providers. CRUD operations are built into the classes that implement them. You can create memberships and roles using Visual Studio (they usually come in a private database in the App_Data folder), or you can run aspnet_regsql (a command line utility) to set up the membership and role tables in an existing SQL Server database. There is also a provider that works with Active Directory instead of SQL Server.



I have used the SQL Server provider in several applications and it works very well. It integrates very seamlessly with ASP.NET authentication and authorization. I'm not sure why you would want to go with something else; if there is a reason the ASP.NET providers are not meeting your needs, please extend that.

+2


source


The Cylon cat said this; it's built in.



There is an administrative interface called the Website Administration Tool that can be easily executed for security purposes.

+1


source


The most similar thing I found was this tutorial series in ASP.NET

0


source







All Articles