asp.net DataList实现分页功能

DataList控件绑定数据源的方法与GridView基本相似,但要将绑定数据源的数据显示出来,就需要通过设计DataList控件的模板来完成。若我们要实现分页功能则我们有一种方法可以用PagedDataSource类来实现。实际运行效果如下图:

 

实现前台代码如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Page.aspx.cs" Inherits="mytest.Page" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
    <title>无标题页</title>

</head>
<body>
    <form id="form1" runat="server">
    <div>
    <table height="128" border="0" cellpadding="0" cellspacing="0" 
            style="width: 598px">
        <tr>
          <td align="left">
                <asp:DataList ID="DataList1" runat="server" Width="693px" 
                    style="font-size: small" onitemcommand="DataList1_ItemCommand" 
                    onitemdatabound="DataList1_ItemDataBound" DataKeyField="PerHomeId">
                    <ItemTemplate>
                        <table>
                            <tr style="border-bottom-style: groove; border-bottom-width: medium; border-bottom-color: #FFFFFF">
                                <td rowspan="3" align="center" class="style3">
                                <a href='#'>
                                     <img border="0" height="80" src='images/showimg.gif' width="80"> </img>
                                </a>
                                </td>
                                <td align="left">
                                    <asp:Image ID="Image4" runat="server" ImageUrl="~/images/ico2.gif" />
                                    <a><%#Eval("PerHomeName")%></a>
                                </td>
                                <td align="left">
                                     </td>
                                <td>
                                     </td>
                            </tr>
                            <tr>
                                <td align="left">
                                    空间主人:<a><%#Eval("PerHomeUser") %></a></td>
                                <td align="left">
                                    --创建时间:<a><%#Eval("PerHomeTime","{0:D}") %></a></td>
                                <td>
                                     </td>
                            </tr>
                            <tr>
                                <td align="left" colspan="3">
                                    个性签名:<a ><%#Eval("PerHomeSign").ToString().Length > 10 ? Eval("PerHomeSign").ToString().Substring(0, 10) + "..." : Eval("PerHomeSign")%></a></td>
                            </tr>
                        </table>
                    </ItemTemplate>
                      <FooterTemplate>
                <div style="text-align:left>
                    <table id="Page" border="1" cellpadding="0" cellspacing="0" 
                        style="font-size: 12px; width: 68%">
                        <tr>
                            <td >
                <asp:Label ID="labCurrentPage" runat="server"></asp:Label>/
                <asp:Label ID="labPageCount" runat="server"></asp:Label>
                <asp:LinkButton ID="lnkbtnFirst" runat="server" CommandName="first">首页</asp:LinkButton>
                <asp:LinkButton ID="lnkbtnFront" runat="server" CommandName="pre">上一页</asp:LinkButton> 
                <asp:LinkButton ID="lnkbtnNext" runat="server" CommandName="next">下一页</asp:LinkButton>
                <asp:LinkButton ID="lnkbtnLast" runat="server" CommandName="last">尾页</asp:LinkButton>
                  跳转至:<asp:TextBox ID="txtPage" runat="server" Width="35px"></asp:TextBox>
                <asp:Button ID="Button1" runat="server" CommandName="search" Text="GO" />
                                   
                <br />
                            </td>
                        </tr>
                    </table>
                </div>
            </FooterTemplate>
                </asp:DataList>

				</td>
        </tr>
      </table>
    </div>
    </form>
</body>
</html>

后台代码如:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Configuration;
using System.Data.SqlClient;
using System.Data;

namespace mytest
{
    public partial class Page : System.Web.UI.Page
    {
        protected static PagedDataSource pds = new PagedDataSource();//创建一个分页数据源的对象且一定要声明为静态
        public SqlConnection conn = new SqlConnection(ConfigurationManager.AppSettings["strconnections"].ToString());
        protected void Page_Load(object sender, EventArgs e)
        {
            if (!IsPostBack)
            {
                BindDataList(0);
            }
        }
        private void BindDataList(int currentpage)
        {
            pds.AllowPaging = true;//允许分页
            pds.PageSize = 3;//每页显示3条数据
            pds.CurrentPageIndex = currentpage;//当前页为传入的一个int型值
            string strSql = "SELECT * FROM PerHomeDetail";//定义一条SQL语句
            conn.Open();//打开数据库连接 
            SqlDataAdapter sda = new SqlDataAdapter(strSql, conn);
            DataSet ds = new DataSet();
            sda.Fill(ds);//把执行得到的数据放在数据集中
            pds.DataSource = ds.Tables[0].DefaultView;//把数据集中的数据放入分页数据源中
            DataList1.DataSource = pds;//绑定Datalist
            DataList1.DataBind();
            conn.Close();
        }
        protected void DataList1_ItemCommand(object source, DataListCommandEventArgs e)
        {
            switch (e.CommandName)
            {
                //以下5个为 捕获用户点击 上一页 下一页等时发生的事件
                case "first"://第一页
                    pds.CurrentPageIndex = 0;
                    BindDataList(pds.CurrentPageIndex);
                    break;
                case "pre"://上一页
                    pds.CurrentPageIndex = pds.CurrentPageIndex - 1;
                    BindDataList(pds.CurrentPageIndex);
                    break;
                case "next"://下一页
                    pds.CurrentPageIndex = pds.CurrentPageIndex + 1;
                    BindDataList(pds.CurrentPageIndex);
                    break;
                case "last"://最后一页
                    pds.CurrentPageIndex = pds.PageCount - 1;
                    BindDataList(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 MyPageNum = 0;
                        if (!txtPage.Text.Equals(""))
                            MyPageNum = Convert.ToInt32(txtPage.Text.ToString());
                        if (MyPageNum <= 0 || MyPageNum > PageCount)
                            Response.Write("<script>alert('请输入页数并确定没有超出总页数!')</script>");
                        else
                            BindDataList(MyPageNum - 1);
                    }
                    break;
            }
        }
        protected void DataList1_ItemDataBound(object sender, DataListItemEventArgs e)
        {
            if (e.Item.ItemType == ListItemType.Footer)
            {
                //以下六个为得到脚模板中的控件,并创建变量.
                Label CurrentPage = e.Item.FindControl("labCurrentPage") as Label;
                Label PageCount = e.Item.FindControl("labPageCount") as Label;
                LinkButton FirstPage = e.Item.FindControl("lnkbtnFirst") as LinkButton;
                LinkButton PrePage = e.Item.FindControl("lnkbtnFront") as LinkButton;
                LinkButton NextPage = e.Item.FindControl("lnkbtnNext") as LinkButton;
                LinkButton LastPage = e.Item.FindControl("lnkbtnLast") as LinkButton;
                CurrentPage.Text = (pds.CurrentPageIndex + 1).ToString();//绑定显示当前页
                PageCount.Text = pds.PageCount.ToString();//绑定显示总页数
                if (pds.IsFirstPage)//如果是第一页,首页和上一页不能用
                {
                    FirstPage.Enabled = false;
                    PrePage.Enabled = false;
                }
                if (pds.IsLastPage)//如果是最后一页"下一页"和"尾页"按钮不能用
                {
                    NextPage.Enabled = false;
                    LastPage.Enabled = false;
                }
            }
        }
    }
}


 

  • 1
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值