jro
jro

Reputation: 7480

ASP.Net auto-generated Admin tool

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

Answers (3)

Alejandro Mezcua
Alejandro Mezcua

Reputation: 1201

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

Upvotes: 1

sandesh247
sandesh247

Reputation: 1676

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

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

Upvotes: 2

Brandon
Brandon

Reputation: 14196

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

Upvotes: 0

Related Questions