views:

355

answers:

3

Is it part of Asp.Net MVC 2.0. If not then does Asp.Net MVC 2.0 ship with in built GridView support?

+2  A: 

Is it part of Asp.Net MVC 2.0.

No. MvcContrib grid is not a part of MVC 2.

If not then does Asp.Net 2.0 ship with in built GridView support?

Yes. The Asp.Net Gridview was introduced with .Net Framework 2.0

Luhmann
Sorry, I meant Asp.Net MVC 2.0. Does it have in built GridView?
Amitabh
I am afraid not. But there a several available. There are jQuery implementations, and Telerik has one.
Luhmann
But why cant you use MvcContrib?
Luhmann
@Luhmann : Grid is such a basic requirement for any basic project that I thought it should be available out of the box in Asp.Net MVC
Amitabh
+2  A: 

ASP.NET MVC 2 does not have a built in GridView helper. But there are several that can be used, such as the Telerik open source mvc controls, the MvcContrib, and several jQuery options (such as jqgrid). Or you could just render the grid yourself. Or build your own helper.

thekaido
+3  A: 

You could use a jQuery grid with MVC .

Nicholas Murray