tags:

views:

165

answers:

3

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?

A: 

Take a look at IronSpeed Designer (www.ironspeed.com).

routeNpingme
+1  A: 

http://www.asp.net/dynamicdata/

Scaffolding (CRUD) for all tables, or optionally only the ones you choose.

sandesh247
A: 

You could use ASP.NET Dynamic Data to do something similar.

Alejandro Mezcua