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




Reply With Quote