<%@ Control Language="C#" ClassName="TableDataPager" %> <% // TableDataPager.ascx // Implementation of the TableDataPager Control. // Copyright (c) by Matthias Hertel, http://www.mathertel.de // This work is licensed under a BSD style license. See http://www.mathertel.de/License.aspx // ----- // 01.06.2005 created by Matthias Hertel // 06.11.2005 cols attribute added. // 13.11.2005 service attribute added, fetching all visible rows at a time. // 26.04.2006 minor layour changes. %> <script runat="server"> // define and pass parameters public string pagesize = "16"; public string tabledatapart = null; public string service = String.Empty; public bool Showall = false; protected override void OnPreRender(EventArgs e) { base.OnPreRender(e); if (Page.Header == null) throw new Exception("The <head> element of this page is not marked with runat='server'."); // register the JavaScripts includes without need for a Form. if (!Page.ClientScript.IsClientScriptBlockRegistered(Page.GetType(), "CommonBehaviour")) { Page.ClientScript.RegisterClientScriptBlock(Page.GetType(), "CommonBehaviour", String.Empty); ((HtmlHead)Page.Header).Controls.Add(new LiteralControl("<script type='text/javascript' src='" + Page.ResolveUrl("~/controls/jcl.js") + "'><" + "/script>\n")); } // if if (!Page.ClientScript.IsClientScriptBlockRegistered(this.GetType(), "MyBehaviour")) { Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "MyBehaviour", String.Empty); ((HtmlHead)Page.Header).Controls.Add(new LiteralControl("<script type='text/javascript' src='" + Page.ResolveUrl("~/controls/tabledatapager.js") + "'><" + "/script>\n")); } // if } // OnPreRender </script> <div id="<%=this.ClientID %>" class="TableDataPager" pagesize="<%=this.pagesize %>" service="<%=this.service %>" tabledatapart="<%=this.tabledatapart%>"> <a style="width:24px;" href="nav:first">|<</a> <a style="width:24px;" href="nav:prev"><<</a> <a>1</a> <a>2</a> <a>3</a> <a>4</a> <a>5</a> <a style="width:24px;" href="nav:next">>></a> <a style="width:24px;" href="nav:last">>|</a> <% if (Showall) { %> <a style="width:24px; padding-left: 10px" href="nav:all">(all)</a> <% } %> </div> <script type="text/javascript"> jcl.LoadBehaviour("<%=this.ClientID %>", TableDataPagerBehaviour); </script>
This page is part of the http://www.mathertel.de/ web site.
For updates and discussions see http://ajaxaspects.blogspot.com/.