i work on C#,asp.net..
my grid has 10 columns and 25 rows. i allowed sorting and paging.
all the items in the grid are numeric values(may be int ,float, double..etc).
the task is to add all the values column wise and display the columnwise total in a seperate row or in a footer..
for ex .this is the sample below..
c0c1c2...
r0 2 4
r1 5 3
r2 1 6
tot 8 13
the above is the sample...i want to display the grid like this. just to add the values and put their sum in a seperate row or in a footer...can any one help with detailed C# code...i'm a fresher in .net...
my grid has 10 columns and 25 rows. i allowed sorting and paging.
all the items in the grid are numeric values(may be int ,float, double..etc).
the task is to add all the values column wise and display the columnwise total in a seperate row or in a footer..
for ex .this is the sample below..
c0c1c2...
r0 2 4
r1 5 3
r2 1 6
tot 8 13
the above is the sample...i want to display the grid like this. just to add the values and put their sum in a seperate row or in a footer...can any one help with detailed C# code...i'm a fresher in .net...