Der PageableRepeater ist ein ASP.NET WebControl, das die gleiche 
Funktionalitt wie das <asp:Repeater> Control aufweist, nur das man 
sich zustzlich die Daten auch seitenweise anzeigen lassen kann. Das 
Paging ist genau wie beim Datagrid implementiert, wodurch man so gut 
wie keine Einarbeitungszeit braucht, wenn man schon mal mit dem 
DataGrid "gepaged" hat.  
Auerdem wurde eine EmptyDataTemplate-Eigenschaft hinzugefgt, der 
man HTML-Code hinterlegen kann, welcher nur angezeigt wird, wenn die 
gebundene Datenquelle keine Daten enthlt.

Um die Beispiele anzuzeigen, bitte vorher im IIS ein neues Virtuelles 
Verzeichnis namens "PageableRepeaterExamples" anlegen und die Dateien 
aus dem gleichnamigen Ordner in das Virtuelle Verzeichnis kopieren.
Danach im Browser folgende Seite aufrufen:
http://localhost/PageableRepeaterExamples/default.htm


// This software is Copyright (c) Martin Andert. All rights reserved.
// Contact: mandert@gmx.net
//
// Redistribution and use in source and binary forms, with or without 
// modification, are permitted provided that the following conditions 
// are met:
// 
// 1. Redistributions in source code must retain the above
//    copyright notice, this list of conditions, and the following
//    disclaimer.
// 
// 2. Redistributions in binary form must reproduce the above
//    copyright notice, this list of conditions, and the following
//    disclaimer in the documentation and/or other materials
//    provided with the distribution.
// 
// 3. If any files are modified, you must cause the modified
//    files to carry prominent notices stating that you changed
//    the files and the date of any change.
// 
// THIS SOFTWARE IS PROVIDED BY THE AUTHOR 'AS IS' AND ANY EXPRESSED OR 
// IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 
// OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  
// IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
// OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
// WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.