A DataList control that contains a template that includes two DataBinding expressions. : DataList « Data Binding « ASP.NET Tutorial






<%@ 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 DataList</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>

    <asp:DataList
        id="DataList1"
        DataSourceId="srcProducts"
        Runat="server">
        <ItemTemplate>
        <b>Product Title:</b>
        <%#Eval("Title")%>
        <br />
        <b>Date Released:</b>
        <%#Eval("DateReleased", "{0:D}") %>
        <hr />
        </ItemTemplate>
    </asp:DataList>

    <asp:SqlDataSource
        id="srcProducts"
        ConnectionString="Data Source=.\SQLExpress;
            AttachDbFilename=|DataDirectory|MyDatabase.mdf;
            Integrated Security=True;User Instance=True"
        SelectCommand="SELECT Title,Director,DateReleased FROM Products"
        Runat="server" />

    </div>
    </form>
</body>
</html>








19.9.DataList
19.9.1.A DataList control that contains a template that includes two DataBinding expressions.
19.9.2.Nested data bind sample
19.9.3.Get an flexible and feature-rich UI using the DataList control