User61956409 posted
Hi rajaganapathy,
To achieve the requirement, please refer to the following example.
<asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="false" ShowFooter="true">
<Columns>
<asp:BoundField DataField="SNo" HeaderText="S.No" />
<asp:BoundField DataField="Name" HeaderText="Name" />
<asp:BoundField DataField="Age" HeaderText="Age" />
</Columns>
</asp:GridView>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
bindgrid();
GridView1.FooterRow.Cells.RemoveAt(0);
GridView1.FooterRow.Cells.RemoveAt(1);
GridView1.FooterRow.Cells[0].Text = $"Total: {num_here}" + " Team: IT";
GridView1.FooterRow.Cells[0].ColumnSpan = 3;
}
}
Test Result:

With Regards,
Fei Han