Rhubarb
Rhubarb

Reputation: 4003

Is there an equivalent django-admin like feature for ASP.NET?

I'm looking for anything that allows similar editing of tables and doesn't have a software cost associated to it.

Upvotes: 3

Views: 1797

Answers (2)

zs2020
zs2020

Reputation: 54541

You can create the Dynamic Data Site in Visual Studio 2010, which does the same thing like Django-admin site. It requires Entity Framework.

Upvotes: 0

Ignacio Vazquez-Abrams
Ignacio Vazquez-Abrams

Reputation: 799560

Not in bare ASP.NET. The Django framework can get away with having an admin interface like this because its ORM, template engine, and MVT mechanisms are all fixed. Some ASP.NET frameworks may have it, but there will be a software cost regardless.

Upvotes: 1

Related Questions