Reputation: 7480
I need to create an administrative site for managing my web site's db. I don't want to build this myself, I simply want the framework in place so that I can add customization myself after it is in place.
Django has a great auto-generated admin. What's an equivalent auto-generated admin site built under asp.net?
Upvotes: 2
Views: 2241
Reputation: 1201
You could use ASP.NET Dynamic Data to do something similar.
Upvotes: 1
Reputation: 1676
http://www.asp.net/dynamicdata/
Scaffolding (CRUD) for all tables, or optionally only the ones you choose.
Upvotes: 2