Posts

Gridview column sum In footer In asp.net

Image
Gridview column sum In footer In asp.net Step 1: Design web page .aspx             < asp : GridView ID ="gr" runat ="server" AutoGenerateColumns ="false" AlternatingRowStyle-BackColor ="WhiteSmoke" Width ="40%" ShowFooter ="true" OnRowDataBound ="gr_RowDataBound" FooterStyle-Font-Bold ="true">                 < HeaderStyle BackColor ="#3366ff" Font-Bold ="true" ForeColor ="White" />                 < Columns >                     < asp : TemplateField HeaderText ="Name">                         < ItemTemplate > ...

Paging In Grdiview using asp.net

Image
Paging In Grdiview using asp.net Step 1: Design web page .aspx   < asp : GridView ID ="gr" runat ="server" AutoGenerateColumns ="false" AlternatingRowStyle-BackColor ="WhiteSmoke" Width ="40%" ShowFooter ="true" OnRowDataBound ="gr_RowDataBound" FooterStyle-Font-Bold ="true" AllowPaging ="true" PageSize ="7" OnPageIndexChanging ="gr_PageIndexChanging">                 < HeaderStyle BackColor ="#3366ff" Font-Bold ="true" ForeColor ="White" />                 < Columns >                      < asp : TemplateField HeaderText ="id">                         < ItemTempl...