程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> 關於ASP.NET >> Asp.Net Web控件 (四)(可分頁的Repeater)

Asp.Net Web控件 (四)(可分頁的Repeater)

編輯:關於ASP.NET

這是一個自帶分頁的繼承Repeater的控件,支持url分頁,支持回發分頁。

先上效果。

設計時html代碼:

<!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 runat="server">
   <title></title>
</head>
<body>
   <hxj:PageRepeater ID="PageRepeater1" PageSize="5" runat="server"  EnableViewState="false"
     UrlPaging="true">
     <HeaderTemplate>
       <table style="border-collapse: collapse" border="1" cellspacing="0"  bordercolor="#000000"
         cellpadding="0" width="100%">
         <thead>
           <tr>
             <th>
               產品Id
             </th>
             <th>
               產品名稱
             </th>
             <th>
               UnitPrice
             </th>
             <th>
               SupplierId
             </th>
             <th>
               ReorderLevel
             </th>
           </tr>
         </thead>
         <tbody>
     </HeaderTemplate>
     <ItemTemplate>
       <tr>
         <td>
           <% # Eval("ProductID") %>

   </td>
   <td>
   <%  # Eval("ProductName") %>
   </td>
   <td>
   <% # Eval("UnitPrice") %>
   </td>
   <td>
   <%  # Eval("SupplierID") %>
   </td>
   <td>
   <%  # Eval("ReorderLevel") %>
   </td>
   </tr>
   </ItemTemplate>
   <FooterTemplate>
   </tbody></table></FooterTemplate>
   </hxj:PageRepeater>
   </body>
   </html>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved