sowjanya bommithi Ответов: 1

Как добавить нижний колонтитул с меткой в динамически создаваемый gridview in ASP.NET


на самом деле я создал сетку dyanamically all clumns are came from database. now i want to display sum of column values in footer labes

Что я уже пробовал:

<asp:GridView ID="AIGrid" runat="server"

                                                      AutoGenerateColumns="False" PageSize="25"

                       AllowPaging="true" OnPageIndexChanging="OnAIGrid_PageIndexChanging" ShowFooter="true"  OnRowCreated ="AIGrid_RowCreated"

                   Font-Size="10pt" CssClass="grid" OnRowDataBound="AIGrid_RowDataBound">
                   <Columns>

                   </Columns>
                   </asp:GridView>

это моя страница aspx и мой код страницы cs находится ниже

if (e.Row.RowType == DataControlRowType.Footer)
        {
            GridViewRow Footerrow = new GridViewRow(1, 0, DataControlRowType.Footer, DataControlRowState.Insert);
            Label  txtCountry = new Label();
        }