Fork me on GitHub

AspNetPager 示例 - 分页按钮属性效果

该示例演示AspNetPager部分按钮属性,通过设置这些属性可以控制AspNetPager 显示或不显示哪些分页导航按钮。

属性:




NavigationButtons.aspx:

<%@ Page Language="C#" MasterPageFile="AspNetPager.master" MetaDescription="该示例演示AspNetPager部分按钮属性,通过设置这些属性可以控制AspNetPager 显示或不显示哪些分页导航按钮。"  AutoEventWireup="true" Inherits="NavigationButtons_Default" Title="分页按钮属性效果" Codebehind="NavigationButtons.aspx.cs" %>
<asp:Content ID="Content1" ContentPlaceHolderID="main" Runat="Server">
    <webdiyer:aspnetpager id="AspNetPager1" runat="server" RecordCount="288"
    Width="100%"></webdiyer:aspnetpager>
    <p>属性:</p>
    <asp:CheckBox ID="ck_disbtn" runat="server" Checked="True" Text="ShowDisabledButtons" AutoPostBack="True" /><br />
    <asp:CheckBox ID="ck_firstlast" runat="server" Checked="True" Text="ShowFirstLast" AutoPostBack="True" /><br />
    <asp:CheckBox ID="ck_prevnext" runat="server" Checked="True" Text="ShowPrevNext" AutoPostBack="True" /><br />
    <asp:CheckBox ID="ck_pageindex" runat="server" Checked="True" Text="ShowPageIndex" AutoPostBack="True" />
</asp:Content>

NavigationButtons.aspx.cs:

using System;
using System.Web.UI;

public partial class NavigationButtons_Default : Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        if(IsPostBack)
        {
            AspNetPager1.ShowFirstLast = ck_firstlast.Checked;
            AspNetPager1.ShowPrevNext = ck_prevnext.Checked;
            AspNetPager1.ShowPageIndex = ck_pageindex.Checked;
            AspNetPager1.ShowDisabledButtons = ck_disbtn.Checked;
        }

    }
}