Mega Code Archive

 
Categories / ASP.Net Tutorial / Data Binding
 

Using a PagerTemplate with the FormView control

<%@ Page Language="C#" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"    "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <body>     <form id="form1" runat="server">     <div id="content">     <asp:FormView         id="frmProducts"         DataSourceID="srcProducts"         AllowPaging="true"         CssClass="frmProducts"         Runat="server">         <ItemTemplate>         <h1><%# Eval("Title") %></h1>         <b>Directed By:</b>         <%# Eval("Director") %>         <br />         <b>Box Office Totals:</b>         <%#Eval("Totals", "{0:c}") %>         </ItemTemplate>         <PagerTemplate>         <hr />         <div style="float:left">         Page: <%# frmProducts.PageIndex + 1 %>         </div>         <div style="float:right;white-space:nowrap">         <asp:LinkButton             id="lnkPrevious"             Text="Previous Page"             CommandName="Page"             CommandArgument="Prev"             Runat="server" />         |         <asp:LinkButton             id="lnkNext"             Text="Next Page"             CommandName="Page"             CommandArgument="Next"             Runat="server" />         </div>         </PagerTemplate>     </asp:FormView>     <asp:SqlDataSource         id="srcProducts"         ConnectionString="<%$ ConnectionStrings:Products %>"         SelectCommand="SELECT Id,Title,Director,Totals FROM Products"         Runat="server" />     </div>     </form> </body> </html> File: Web.config <configuration>   <connectionStrings>     <add name="Products"           connectionString="Data Source=.\SQLEXPRESS;          AttachDbFilename=|DataDirectory|MyDatabase.mdf;Integrated Security=True;User Instance=True" />   </connectionStrings> </configuration>