asp net display data from multiple table in gridview in asp.net code example
Example 1: how to subtract two rows asp ne gridview in asp.net
ServiceInsuranceList = new System.Data.DataTable();
Example 2: how to subtract two rows asp ne gridview in asp.net
private void BtnAdd_Click(object sender, EventArgs e)
{
GrdServiceInsurance.DataSource = ServiceInsuranceList;
for (int i = 0; i < GrdServiceInsurance.Rows.Count; ++i)
{
GrdServiceInsurance.Rows[i].Cells["Total"].Value =(Convert.ToInt32( GrdServiceInsurance.Rows[i].Cells["Cost"].Value.ToString())) -(Convert.ToInt32( GrdServiceInsurance.Rows[i].Cells["InsuranceCost"].Value.ToString()))
}
}