GridView add second and third header row in c#
问题 I have an ASP.NET c# GridView which has columns that look like this: | Foo | Bar | Total1 | Total2 | Total3 | Is it possible to create a header on rows that looks like this? | General | Totals | | | A | B | C | | Foo | Bar | 1 | 2 | 3 | I have tried with RowCreated method , but I'm stopped to : | General | Totals | | Foo | Bar | 1 | 2 | 3 | My code below. Can you help me? Thank you in advance for any help, really appreciated. protected void GridView1_RowCreated(object sender,