In XML/HTML I can do:
Code:
<asp:Label id="lblDescription"  runat="server" Text='<%# DataBinder.Eval(Container.DataItem, "Description") %>'>
</asp:Label>
Now...I would like to do this in code behind:
Code:
Dim lblDescription As New Label
   lblDescription. ???? How do I add binding here?
   Me.Controls.Add lblDescription
Is this possible?

Woka