Is MVC Contrib Grid part of Asp.Net MVC 2.0?
Is it part of Asp.Net MVC 2.0. If not then开发者_JAVA百科 does Asp.Net MVC 2.0 ship with in built GridView support?
You could use a jQuery grid with MVC .
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
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.
精彩评论