Mega Code Archive

 
Categories / ASP.Net Tutorial / Data Binding
 

Displaying Data with the Repeater 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 class="content">     <asp:Repeater         id="rptProducts"         DataSourceID="srcProducts"         Runat="server">         <ItemTemplate>         <div class="products">         <h1><%#Eval("Title") %></h1>         <b>Directed by:</b> <%# Eval("Director") %>         <br />         <b>Box Office Totals:</b> <%# Eval("Totals","{0:c} ") %>         </div>         </ItemTemplate>     </asp:Repeater>     <asp:SqlDataSource         id="srcProducts"         ConnectionString="<%$ ConnectionStrings:Products %>"         SelectCommand="SELECT 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>