博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
《ASP.NET1200例》<asp:DataList>分页显示图片
阅读量:6115 次
发布时间:2019-06-21

本文共 4665 字,大约阅读时间需要 15 分钟。

aspx页面代码

<%# DataBinder.Eval(Container.DataItem, "imageUrl") %>
相册名称
首页
上一页
下一页
末页
Go

 

aspx.cs

public partial class _232DataList : System.Web.UI.Page    {        PagedDataSource pds = new PagedDataSource();        protected void Page_Load(object sender, EventArgs e)        {            if (!IsPostBack)            {                bindDL(0);            }        }        public void bindDL(int curPage)        {                       pds.AllowPaging = true;            pds.PageSize = 2;            pds.CurrentPageIndex = curPage;            //绑定数据源            ShowImageBll ShowImageBll = new BLL.ShowImageBll();            DataSet ds=ShowImageBll.GetList();            pds.DataSource = ds.Tables[0].DefaultView;            dlPhoto.DataSource = pds;            dlPhoto.DataBind();        }        protected void dlPhoto_ItemCommand(object source, DataListCommandEventArgs e)        {                       switch (e.CommandName)            {                case "first":                    if (pds.CurrentPageIndex != 0)                    {                        pds.CurrentPageIndex = 0;                    }                    else                    {                        Response.Write("");                    }                    bindDL(pds.CurrentPageIndex);                    break;                case "pre":                    if (pds.CurrentPageIndex > 0) {                        pds.CurrentPageIndex = pds.CurrentPageIndex - 1;                        bindDL(pds.CurrentPageIndex);                    }                    else                    {                        Response.Write("");                    }                                        break;                case "next":                    if (pds.CurrentPageIndex < pds.PageCount - 1)                    {                        pds.CurrentPageIndex = pds.CurrentPageIndex + 1;                        bindDL(pds.CurrentPageIndex);                    }                    else                    {                        Response.Write("");                    }                                       break;                case "last":                    if (pds.CurrentPageIndex != pds.PageCount - 1)                    {                        pds.CurrentPageIndex = pds.PageCount - 1;                    }                    else                    {                        Response.Write("");                    }                    bindDL(pds.CurrentPageIndex);                    break;                case "search":                    if (e.Item.ItemType == ListItemType.Footer)                    {                        int pageCount = int.Parse(pds.PageCount.ToString ());                        TextBox txtPage = e.Item.FindControl("txtPage") as TextBox;                        int myPage = 0;                        if(txtPage .Text !=null)                        {                          myPage = int.Parse(txtPage .Text.Trim ().ToString ());                                                }                        if (myPage <=0||myPage >pageCount ) {                            Response .Write ("");                                                }                        bindDL(myPage-1);                                                             }                    break;               }         }    }
View Code

 

数据库设计

 

运行效果

期间出现的问题:

【1】数据库imageUrl字段 应该为image/20131128.jpg  无需加引号

【2】路径的读取ImageUrl='<%# DataBinder.Eval(Container.DataItem, "imageUrl") %>'

【3】读取图片出错时,应该点击页面上那个叉图片的属性,查看读取出来的路径再查错-------这点很重要

【4】遗留问题:分页显示依然存在Bug后续将做更改  V20131204版本

 

 

Asp.net提供了三个功能强大的列表控件:DataGrid、DataList和Repeater控件,但其中只有DataGrid控件提供分页功能。相对DataGrid,DataList和Repeater控件具有更高的样式自定义性,所以很多时候我们喜欢使用DataList或Repeater控件来显示数据。

: PagedDataSource 类的部分公共属性:

 AllowCustomPaging  获取或设置指示是否启用自定义分页的值。

 AllowPaging   获取或设置指示是否启用分页的值。

 Count    获取要从数据源使用的项数。

 CurrentPageIndex   获取或设置当前页的索引。

 DataSource   获取或设置数据源。

 DataSourceCount   获取数据源中的项数。

 FirstIndexInPage   获取页中的第一个索引。

 IsCustomPagingEnabled  获取一个值,该值指示是否启用自定义分页。

 IsFirstPage   获取一个值,该值指示当前页是否是首页。

 IsLastPage   获取一个值,该值指示当前页是否是最后一页。

 IsPagingEnabled   获取一个值,该值指示是否启用分页。

 IsReadOnly   获取一个值,该值指示数据源是否是只读的。

 IsSynchronized   获取一个值,该值指示是否同步对数据源的访问(线程安全)。

 PageCount   获取显示数据源中的所有项所需要的总页数。

 PageSize   获取或设置要在单页上显示的项数。

 VirtualCount   获取或设置在使用自定义分页时数据源中的实际项数。

转载地址:http://nnvka.baihongyu.com/

你可能感兴趣的文章
Debian 6.05安装后乱码
查看>>
欢迎大家观看本人录制的51CTO精彩视频课程!
查看>>
IntelliJ IDEA中设置忽略@param注释中的参数与方法中的参数列表不一致的检查
查看>>
关于软件开发的一些感悟
查看>>
uva 10806
查看>>
纯CSS3绘制的黑色图标按钮组合
查看>>
Linux中环境变量文件及配置
查看>>
从0开始学Flutter
查看>>
mysql操作入门基础之对数据库和表的增删改查
查看>>
IIS负载均衡
查看>>
分布式事务,EventBus 解决方案:CAP【中文文档】
查看>>
Linux下的CPU性能瓶颈分析案例
查看>>
spring mvc入门
查看>>
2012在数据库技术会议上的讲话PPT打包
查看>>
【Android】 TextView设置个别字体样式
查看>>
python svn
查看>>
raise语句
查看>>
sequence2(高精度dp)
查看>>
ABP实战--集成Ladp/AD认证
查看>>
存储过程
查看>>