Possible Duplicate:
Understanding asp.net Eval() and Bind()
    <asp:DataList ID="DataList1" runat="server" DataKeyField="CustomerID" 
    DataSourceID="SqlDataSource1">
    <ItemTemplate>
        CustomerID:
        <asp:Label ID="CustomerIDLabel" runat="server" 
            Text='<%# Eval("CustomerID") %>' />
    </ItemTemplate>
</asp:DataList>
Whats the difference between Eval and Bind?
 
     
     
     
     
    