I read this document http://support.microsoft.com/kb/976112 where explains all the embedded code blocks available but I want to combine two of them.
I want to use base <% ... %> embedded code blocks with <%# ... %> data-binding expression
Example I want to add an "If" condition to this code:
<asp:Label ID="lblHello" runat="server" Text="<%# DataBinder.Eval(Container.DataItem, "[\"Txt\"]")%>"></asp:Label>
Regards.