0

How do you use the grid control in ASP.NET MVC2? I am using VS 2010.

GEOCHET
  • 21,119
  • 15
  • 74
  • 98

1 Answers1

0

do you mean the standard asp.net webforms grid?

becuase you can not use that grid, because it relies on the viewstate and that is not available in asp.net mvc

Michel
  • 23,085
  • 46
  • 152
  • 242
  • I want to use any grid control supported by ASP.Net MVC pattern. – user874538 Aug 03 '11 at 05:03
  • hi, i found this question which sums up a lot of grids you can use with asp.net mvc. Be aware that the usage of a grid in mvc is different then in webforms: no server events! http://stackoverflow.com/questions/177275/grid-controls-for-asp-net-mvc – Michel Aug 03 '11 at 07:00