tags:

views:

381

answers:

2

how to get a gridview in model view control,how to edit,delete the gridview with source code

A: 

You don't have access to ASP.NET controls in ASP.NET MVC, well not with the postback and viewstate stuff atleast.

However, you can create a nice GridView with ajax edit/delete capabilities by using something like jqGrid and a little code. Here are a couple of blog posts to get you started :

Hope that helps

Khaja Minhajuddin
+1  A: 

Hey,

Telerik has a great grid that's free (open source) for MVC. You can view it here, and the download is on their web site.

http://demos.telerik.com/aspnet-mvc/grid

Brian