ASP.NET MVC CRUD UI autogeneration tools?
There is a project on codeplex called MVCCrud that will automate the repository and controller. JqGrid support is also possible (search, sort, etc.). It is not included in the project, but its very easy to add some T4 templates to create the look you want.
If you just want a normal crud function this is super fast. The only drawback is the only Linq2Sql repository, but you can easily add your own using your interface. Easy to expand or use parts.
a source to share
The Crud template that ships with ASP.NET MVC is based on T4, which is the code generation tool that ships with Visual Studio. This means you can take templates and customize based on your taste and make your own ... look at the ninja tips and tricks Scott Hanselman goes into in detail:
http://channel9.msdn.com/posts/matthijs/ASPNET-MVC-2-Ninja-Black-Belt-Tips-by-Scott-Hanselman/
a source to share