6

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?

7
  • 1
    What do you mean by admin interface exactly? Commented Feb 12, 2010 at 15:09
  • 1
    Might be Dynamic Data website you're looking for? else you gotta build it in mvc view (page) by view Commented Feb 12, 2010 at 15:12
  • asp.net/learn/3.5-SP1 has some videos for it Commented Feb 12, 2010 at 15:14
  • 1
    @çağdaş - good question; when you define the domain model for use in your web application in Django (web framework based on Python), the framework automatically generates web pages that allow an administrator to add/ remove objects etc. I think it is a great idea, because it means you do not have to write all this stuff yourself. Commented Feb 12, 2010 at 15:32
  • Um, ASP.NET and ASP.NET MVC are two different things... Commented Feb 12, 2010 at 15:46

2 Answers 2

7

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

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

Sign up to request clarification or add additional context in comments.

2 Comments

+1. Much appreciated Chris, this may be exactly what im looking for. Will look into it and come back to accept your answer if it is.
That link is broken. Closest thing I found was this page, but articles are from 2008. asp.net/web-forms/videos/aspnet-dynamic-data
0

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

2 Comments

Cool. I actually prefer MVC over traditional webforms. I will look into this, though I expect it will still be a lot of work compared to the 'magic' that is performed by Django. Of course I could write it myself and everyone could benefit, but I am afraid I am too lazy :).
I haven't had the chance to use them myself, but I suspect there are t4 templates available that will get you 80% of the way there. I found Dynamic data to be too rigid for my MVC tastes, but it will probably get you closer to 100% of the way. Depends on how lazy you are feeling I suppose. :)

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.