Sharique
Sharique

Reputation: 4219

Grouping and paging in asp.net

I want to display some data in grid like control, in which every row will have some title and ot will also have paging. I searched around but did not found any solution.

Data will look like this


row title

item | item | item | item

row title

item | item | item | item

row title

item | item | item | item


First Prev next last


Upvotes: 0

Views: 1091

Answers (3)

David Robbins
David Robbins

Reputation: 10046

If you have budget, you can always check out the Telerik RADGrid controls. This will let perform the group quite easily. It's cheap when you consider that you get support for client side /AJAX functionality, paging etc. The control has exactly what you're looking for with nested grid structures.

Upvotes: 0

MRG
MRG

Reputation: 3219

You can use asp.net repeater control for this purpose.

Please check this article for the walk through.

Upvotes: 1

Robert Harvey
Robert Harvey

Reputation: 180858

Building a Grouping Grid with the ASP.NET 3.5 LinqDataSource and ListView Controls
http://mattberseth.com/blog/2008/01/building_a_grouping_grid_with.html

Including Subheadings in a Datagrid
https://web.archive.org/web/20210510023010/https://aspnet.4guysfromrolla.com/articles/072603-1.aspx

Upvotes: 1

Related Questions