Sunday, May 29, 2011

How to add dynamic footer in dynamic Grid View with ASP.NET


This code use after Binding a  gridview.

        GridViewRow footerRow = GridView1.FooterRow;
        Label lbl = new Label();
        lbl.Text = "Create Footer Row";
        footerRow.Cells[2].Controls.Add(lbl);

0 comments:

Post a Comment