0

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

3
  • ya I searched.. din get some good results .. Commented May 13, 2013 at 6:03
  • 1
    MVC is not ASP.NET. It works quite differently. You have some jquery grid plugins such jqgrid.com Or you can see how to do it like MVC lets you easily add lists of objects and edit,delete or add new ones like the answer here: stackoverflow.com/questions/16495896/… Commented May 13, 2013 at 6:11
  • please refer to the following link c-sharpcorner.com/UploadFile/cd3310/… Commented May 13, 2013 at 6:14

1 Answer 1

1

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".

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.