Reputation: 1570
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?
Upvotes: 6
Views: 3243
Reputation: 5018
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.
Upvotes: 1
Reputation: 37547
ASP.NET Data Dynamics may be what you're looking for.
It helps to quickly generate interfaces you can use to manage your data.
Upvotes: 8