Click here to Skip to main content
15,885,061 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
plj give me the answer...

thanks in advance...
Posted
Comments
Orcun Iyigun 28-Feb-13 7:59am    
What do you mean?Elaborate more..

Try this:
C#
protected void MyGridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.Footer)
    {
       string txt = "Your Footer Text";
       e.Row.Cells[0].Controls.Add(txt);
    }
}
 
Share this answer
 
Comments
Mohamed Mitwalli 6-Mar-13 5:48am    
Long Time since i saw 5+
Prasad_Kulkarni 19-Jun-13 11:27am    
Thank you Mohamed!
Mohamed Mitwalli 19-Jun-13 11:52am    
your welcome Prasad :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900