When you're using asp.net databinding expressions:
<asp:Label Text='EXPRESSION' runat="server" />
What's the difference among:
Container.DataItem("Property")
and
Databinder.Eval(Container.DataItem, "Property")
and
Eval("Property")
and
Bind("Property")
See Question&Answers more detail:os