Reputation: 591
I need to use a GridView in a ASP.NET MVC 3.0.
Can someone post Video Tutorials on how to use a GridView in ASP.NET MVC 3.0 / video tutorials suggesting on how to implement some third party tools for using GridView ?
It should include features such as paging , sorting etc.
Thanks,
Mangesh
Upvotes: 0
Views: 679
Reputation: 15148
If you're referring to GridView as in the GridView Control in WebForms, there is nothing like that. You need to roll your own implementation. Typically you'll bind a view to a model (which has data fetched), loop through it and generate html, here is an example tutorial. ASP.NET MVC is really more "close to the metal".
Upvotes: 1