- 基本功能
- 分页按钮属性效果
- 使用自定义信息区
- Repeater分页
- DataList分页
- Url分页
- Url重写
- Url逆向分页
- n层结构应用
- 使用Xml文件数据源
- 图片浏览示例
- AccessDataSource分页
- SqlDataSource分页
- ObjectDataSource分页
- 自定义数据呈现逻辑
- 使用图片按钮
- 查询结果分页
- 查询结果Url分页
- 克隆属性及事件
- 页索引输入/选择框
- 自定义导航按钮
- 在用户控件中实现分页
- UpdatePanel支持
- 设置当前页按钮位置
- 使用Table布局
- 自定义提交按钮图片
- 从Url中获取每页显示记录数
- 应用CSS样式
- 使用GoToPage方法
- 分页导航元素布局
- 类:
- 属性:
- AlwaysShow
- AlwaysShowFirstLastPageNumber
- BackImageUrl
- ButtonImageAlign
- ButtonImageExtension
- ButtonImageNameExtension
- CloneFrom
- CpiButtonImageNameExtension
- CssClass
- CurrentPageButtonClass
- CurrentPageButtonPosition
- CurrentPageButtonStyle
- CurrentPageButtonTextFormatString
- CurrentPageIndex
- CustomInfoClass
- CustomInfoHTML
- CustomInfoSectionWidth
- CustomInfoStyle
- CustomInfoTextAlign
- DisabledButtonImageNameExtension
- EnableTheming
- EnableUrlRewriting
- EndRecordIndex
- FirstPageText
- FirstPageUrlRewritePattern
- HorizontalAlign
- ImagePath
- InvalidPageIndexErrorMessage
- LastPageText
- LayoutType
- MoreButtonType
- NavigationButtonsPosition
- NavigationButtonType
- NavigationToolTipTextFormatString
- NextPageText
- NumericButtonCount
- NumericButtonTextFormatString
- NumericButtonType
- PageCount
- PageIndexBoxClass
- PageIndexBoxStyle
- PageIndexBoxType
- PageIndexOutOfRangeErrorMessage
- PageSize
- PagesRemain
- PagingButtonLayoutType
- PagingButtonSpacing
- PagingButtonType
- PrevPageText
- RecordCount
- RecordsRemain
- ReverseUrlPageIndex
- ShowBoxThreshold
- ShowCustomInfoSection
- ShowDisabledButtons
- ShowFirstLast
- ShowMoreButtons
- ShowNavigationToolTip
- ShowPageIndex
- ShowPageIndexBox
- ShowPrevNext
- SkinID
- StartRecordIndex
- SubmitButtonClass
- SubmitButtonImageUrl
- SubmitButtonStyle
- SubmitButtonText
- TextAfterPageIndexBox
- TextBeforePageIndexBox
- UrlPageIndexName
- UrlPageSizeName
- UrlPaging
- UrlPagingTarget
- UrlRewritePattern
- 方法:
- 事件:
- 枚举:
- 委托:
AspNetPager 示例 - 图片浏览程序
该示例演示如何使用AspNetPager分页控件制作图片浏览程序。
PhotoViewer.aspx:
<%@ Page Language="C#" AutoEventWireup="true" MetaDescription="该示例演示如何使用AspNetPager分页控件制作图片浏览程序。" Inherits="PhotoViewer_Default" MasterPageFile="AspNetPager.master" Title="图片浏览程序" Codebehind="PhotoViewer.aspx.cs" %> <asp:Content runat="server" ID="content1" ContentPlaceHolderID="main"> <div style="width:100%;text-align:center"><h3>古都西安欢迎您</h3></div> <div style="width:100%;height:320px;text-align:center"> <asp:Image runat="server" ID="img1" /></div> <div style="width:100%;text-align:center"> <webdiyer:aspnetpager id="AspNetPager1" runat="server" horizontalalign="Center" onpagechanged="AspNetPager1_PageChanged" pagesize="1" showpageindex="False" urlpageindexname="img" urlpaging="True" width="500px" PagingButtonType="Image" ImagePath="images/" ButtonImageNameExtension="n" ButtonImageExtension=".gif" DisabledButtonImageNameExtension="g" PagingButtonSpacing="18px" ShowCustomInfoSection="Left" CustomInfoHTML="西安图片:<font color='red'>%currentPageIndex%</font>/%pageCount%"></webdiyer:aspnetpager></div> </asp:Content>
PhotoViewer.aspx.cs:
using System; using System.IO; public partial class PhotoViewer_Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { string[] files = Directory.GetFiles(Server.MapPath("images/xian/"),"xian*.jpg"); AspNetPager1.RecordCount = files.Length; } } void showPicture() { string[] pname = Directory.GetFiles(Server.MapPath("images/xian/"), "xian*.jpg"); img1.ImageUrl = "images/xian/" + Path.GetFileName(pname[AspNetPager1.CurrentPageIndex-1]); } protected void AspNetPager1_PageChanged(object src, EventArgs e) { showPicture(); } }