Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Generating Admin Interfaces in ASP.NET or ASP.NET MVC

Is there a Django-like admin interface generator for ASP.NET or ASP.NET MVC?

If not, are there any tools that could assist in creating one?

like image 843
martijn_himself Avatar asked Feb 12 '10 15:02

martijn_himself


2 Answers

ASP.NET Data Dynamics may be what you're looking for.

It helps to quickly generate interfaces you can use to manage your data.

like image 145
Chris Van Opstal Avatar answered Oct 22 '22 12:10

Chris Van Opstal


There is nothing for MVC that I know of. T4 templating will get you pretty close to this type of automatic interface generation for dummy CRUD pages. There are lots of freely available templates if you do a bit of searching.

http://blogs.msdn.com/webdevtools/archive/2009/01/29/t4-templates-a-quick-start-guide-for-asp-net-mvc-developers.aspx

like image 45
Jace Rhea Avatar answered Oct 22 '22 11:10

Jace Rhea