Mega Code Archive

 
Categories / ASP.Net Tutorial / Data Binding
 

Using BoundFields with the DetailsView 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" > <head id="Head1" runat="server">     <title>Show Fields</title> </head> <body>     <form id="form1" runat="server">     <div>     <asp:DetailsView         id="dtlProducts"         DataSourceID="srcProducts"         AutoGenerateRows="false"         Runat="server">         <Fields>         <asp:BoundField             DataField="Title"             HeaderText="Product Title:" />         <asp:BoundField             DataField="Director"             HeaderText="Product Director:" />         <asp:BoundField             DataField="Totals"             DataFormatString="{0:c}"             HeaderText="Box Office Totals:" />         </Fields>     </asp:DetailsView>     <asp:SqlDataSource         id="srcProducts"         ConnectionString="<%$ ConnectionStrings:Products %>"         SelectCommand="SELECT Id,Title,Director,Totals FROM Products             WHERE Id=1"         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>