Grid View Properties:
gridview we need to set AllowPaging="true" and PageSize="5" Properties
<asp:GridView ID="gvEmpDetails" runat="server" CssClass="Gridview" AllowPaging="true" PageSize="4"HeaderStyle-BackColor="#7779AF" HeaderStyle-ForeColor="White" DataSourceID="dsEmpdetails">
<PagerSettings Mode="NumericFirstLast" PageButtonCount="4"
FirstPageText="First" LastPageText="Last"/>
<PagerStyle BackColor="#7779AF" Font-Bold="true" ForeColor="White" />
</asp:GridView>
NextPreviousFirstLast: If we want to use this mode for paging in gridview we need to change thePagerSettings mode like this
<PagerSettings Mode="NextPreviousFirstLast" PageButtonCount="4" PreviousPageText="Previous"
NextPageText="Next" FirstPageText="First" LastPageText="Last" />
|
No comments:
Post a Comment