views:

146

answers:

2

What frameworks are targeted specifically at building so-called "CRUD Admin UIs" (basically, a set of screens for editing related SQL tables), whether Web Apps or Thick Clients.

The ones I know of:

  • ASP.NET DynamicData
  • Django Admin (from Nick's answer below)

General purpose frameworks like Ruby-on-Rails and ASP.NET MVC don't count.

A: 

Based on those requirements; i'd have to say plain old ASP.NET GridViews bound to a SQLDataSource.

You'll never even need to open the code editor!

Gurdas Nijor
+2  A: 

http://devpicayune.com/pycon2008/django%5Fadmin.html

Once you have your models setup, Django's admin is a very powerful, easy-to-use, and extensible interface.

Nick Presta
thanks man, at least you replied!
zvolkov