Tuesday, July 03, 2007

Select Multiple Rows in GridView

There is an excellent control available that is an extension to the GridView component found in ASP.NET 2.0.

It essentially allows selection of multiple rows in a GridView control. I have implemented in a project and found it to be very simple to configure. The control has a few extra methods and properties to enable the multiple selection.

One thing to note that the SelectedIndices property mentioned in the article does not exist in the compiled C# binary in the download from the same page. There is however, a GetSelectedIndices method which returns an array of integers that you'd expect.

You can find this here.

No comments: