I have the following table:
I would like to calculate the sum of each columns and display the results in the footer.
So the count displayed in the the footer that I would like to show would look like this for my table
The data already bound to the grid.
Now, how do I use the RowDataBound event to accomplish this using vb.net?
Code:
A B C 1 0 0 0 1 1 0 0 0 1 1 0
So the count displayed in the the footer that I would like to show would look like this for my table
Code:
A B C 1 0 0 0 1 1 0 0 0 1 1 0 =========================== 2 2 1
The data already bound to the grid.
Now, how do I use the RowDataBound event to accomplish this using vb.net?
Comment