Hi
I have 3 fields in a Repeater Id, Received, Issued.
In another column i want to display Value as Received-Issued.
In the end of repeater i want to display Total like below
Id Received Issued Balance
1 10 4 6
2 5 2 3
Total 15 6 9
Thanks
Resolved.
int sumOfcolumn = Convert.ToInt32(((Label)e.Item.FindControl("lblReceived")).Text) - Convert.ToInt32(((Label)e.Item.FindControl("lblIssued")).Text);
© COPYRIGHT 2024 ASPSnippets.com ALL RIGHTS RESERVED.