What is the difference between having <%# Eval("State") %> in your aspx page or <%# DataBinder.Eval(Container.DataItem,"state") %> in your aspx page?
Thanks, X
|
|
What is the difference between having <%# Eval("State") %> in your aspx page or <%# DataBinder.Eval(Container.DataItem,"state") %> in your aspx page? Thanks, X
|
||||
|
|
|
Eval("State") is a simplified form of the DateBinder.Eval(Container.DataItem, "State") syntax. It only works inside of data-bound template controls. For more info, see the MSDN documentation. |
||
|
|
|
|
There is no difference. The "Eval" method is just a shortcut for the DataBinder.Eval(Container.DataItem, "blah") method. |
||
|
|
|
|
the Eval method is just a shortcut of the latter |
||
|
|