ASP.NET程式中用Repeater實現分頁

來源:互聯網
上載者:User
一、程式功能:為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")

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.