how to bind the data from datase to gridivew footer control like text box.
i write the code like…
TextBox T= (TextBox)GridView.FooterRow.FindControl("txtFooter");
T.Tex= ds.Tables[0].Rows[0]["MyFirend"].ToString();
I am getting value an assign the value to footer textbox but value is not showing
usually you do this kind of binding in the RowDataBound event of your grid, for example: