频道直达 - 学院 - 下载 - 交易 - 特效 - 字库 - 手册 -排名-工具- 繁體
网页教学网站开发 设为首页
加入收藏
联系我们
建站搜索: 常用广告代码   用户注册 | 用户登陆
您当前的位置:中国建站之家 -> 网站开发设计技术教程 -> Asp.Net教程 -> ASP.NET程序中用Repeater实现分页

ASP.NET程序中用Repeater实现分页

作者:未知  来源:http://edu.chinaz.com  发布时间:2005-7-18 22:19:20  发布人:acx

减小字体 增大字体

一、程序功能:为Repeater实现分页

  二、窗体设计:

  1、新建ASP.NET Web应用程序,命名为Repeater2,保存路径为http://192.168.0.1/Repeater2(注:我机子上的网站的IP是192.168.0.1的主目录是D:\web文件夹)然后点击确定。

  2、向窗体添加一个3行一列的表,向表的第一行中添加一个Repeater控件,向表的第二行中添加两个Label控件向表的第三行中添加四个Button按钮。

  3、切换到HTML代码窗口,在<asp:Repeater id="Repeater1" runat="server">和</asp:Repeater>之间添加以下代码:

<ItemTemplate>
<table id="Table2" style="FONT-SIZE: x-small" width="498">
 <tr>
  <td><%#DataBinder.Eval(Container,"DataItem.employeeid")%></td>
  <td><%#DataBinder.Eval(Container,"DataItem.lastname")%></td>
 </tr>
</table>
</ItemTemplate>

  三、代码设计:

Imports System.Data.SqlClient
Public Class WebForm1
Inherits System.Web.UI.Page

 Dim scon As New SqlConnection("server=localhost;database=northwind;uid=sa;pwd=123")
 Dim sDA As SqlDataAdapter
 Dim ds As DataSet
 Dim currentPage As Integer '记录着目前在哪一页上
 Dim maxPage As Integer '总共有多少页
 Const rowCount As Integer = 3 '一页有多少行
 Dim rowSum As Integer '总共有多少行

 '窗体代码省略

 Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

 If Not Page.IsPostBack Then
  sDA = New SqlDataAdapter("select employeeid, lastname from employees order by employeeid", scon)
  ds = New DataSet
  Try
   sDA.Fill(ds, "employees")
   '获取总共有多少行
   rowSum = ds.Tables(0).Rows.Count
  Catch ex As Exception
   rowSum = 0
  End Try

  '如果没有数据,退出过程
  If rowSum = 0 Then Exit Sub
  '计算出浏览数据的总页数
  If rowSum Mod rowCount > 0 Then
   '有余数要加1
   maxPage = rowSum \ rowCount + 1
  Else
   '正好除尽
   maxPage = rowSum \ rowCount
  End If

  currentPage = 1
  '调用绑定数据过程
  readpage(currentPage)
  BindData()
  Label2.Text = maxPage
  '首页和上一页按钮不可见
  Button1.Visible = False
  Button2.Visible = False
 End If
End Sub

'创建一个绑定数据的过程
Sub BindData()
 Repeater1.DataSource = ds
 Repeater1.DataBind()
 Label1.Text = currentPage
End Sub

'创建一个填充数据集的过程
Sub readpage(ByVal n As Integer)
 sDA = New SqlDataAdapter("select employeeid, lastname from employees order by employeeid", scon)
 ds = New DataSet
 ds.Clear()
 sDA.Fill(ds, (n - 1) * rowCount, rowCount, "employees")
End Sub

'首页按钮
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

 currentPage = 1
 '调用填充数据集过程
 readpage(currentPage)
 '绑定数据
 BindData()
 '设置首页、第一页按钮不可见,显示下一页尾页按钮
 Button1.Visible = False
 Button2.Visible = False
 Button3.Visible = True
 Button4.Visible = True

End Sub

'上一页按钮
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
'如果现在页是第二页,设置首页和上一页按钮不可见
 If Label1.Text > 2 Then
  Button3.Visible = True
  Button4.Visible = True
 Else
  Button1.Visible = False
  Button2.Visible = False
  Button3.Visible = True
  Button4.Visible = True
 End If
 currentPage = Label1.Text - 1
 readpage(currentPage)
 BindData()
End Sub

'下一页按钮
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
'如果现在页倒数第二页,设置最后页和下一页按钮不可见
 If Label1.Text < Label2.Text - 1 Then
  Button1.Visible = True
  Button2.Visible = True
 Else
  Button1.Visible = True
  Button2.Visible = True
  Button3.Visible = False
  Button4.Visible = False
 End If
  currentPage = Label1.Text + 1
  readpage(currentPage)
  BindData()
 End Sub

 '尾页按钮
 Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
  '设置当前页为最大页数
  currentPage = Label2.Text
  readpage(currentPage)
  BindData()
  Button1.Visible = True
  Button2.Visible = True
  Button3.Visible = False
  Button4.Visible = False
 End Sub
End Class

  窗体界面如下所示:


将本文收藏到QQ书签与更多好友分享
[打 印]
[] [返回上一页] [收 藏]
∷相关文章评论∷    (评论内容只代表网友观点,与本站立场无关!) [更多评论...]
精彩推荐
热门文章
· 注册码大全二
· 注册码大全四
· 注册码大全一
· 要10G免费网络硬盘的请进..
· 通过google 赶快来赚美金..
· 注册码大全十
· 头像-qq头像(qq新头像)4..
· 让你轻松架设FTP服务器1..
· 注册码大全三
· 梦幻背景图片7
· 卡通动物图片6
· 网页制作素材-按钮素材2..
· 让你轻松架设FTP服务器5..
· 风景图片8
· 注册码大全九
· 让你轻松架设FTP服务器2..
关注此文读者还看过
· 用Javascript判断下拉菜..
· 把存储在SQL7的image字段..
· 分离美工 杜绝重复
· Contribute 3 and Flash..
· 一个简单实现多条件查询..
· 用PHOTOSHOP制作MM的艺术..
· Photoshop轻松制作非主流..
· 美国拍卖“地狱”域名 起..
· Skype创始人:与Tom合资..
· ASP编程入门进阶(九)
· 在VBSript中使用regular..
· 搜索引擎优化(SEO)方法和..
· 初探PHP5<3>
· AOL成为美国最受欢迎的网..
· 用 Photoshop 绘作逼真蕃..
· 正则表达式简介(13)
相关文章
· ASP.NET连接Access和SQL Se..
· Asp.net中防止用户多次登录..
· ASP.NET 与 Ajax 的实现方式..
· ASP.net平台社区软件Discuz..
· ASP.NET AJAX中的异步..
· 解析:如何在 ASP.NET 中下..
· ASP.Net中保护自定义的服务..
· ASP.NET中的doPostBack脚本..
· 不使用VS进行ASP.NET Membe..
· 关于ASP.NET编程中的嵌套If..
· ASP.NET 2.0 页面状态持续程..
· ASP.NET中的日期与时间的处..
· Asp.net编程中的数组基础实..
· 简单介绍 ASP.NET 中的运算..
· Asp.Net 构架(Http请..
· Asp.net中的Popup控件..
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 - 人才招聘
网站合作、内容监督、商务咨询:QQ: 9576619
Copyright ? 2005--2008 中国建站之家版权所有
粤ICP备05092265号