vote up 2 vote down star

What is the difference between having <%# Eval("State") %> in your aspx page or <%# DataBinder.Eval(Container.DataItem,"state") %> in your aspx page?

Thanks, X

flag

68% accept rate
Now you have your answer... and it was echo 2 times :) – Timothy Khouri Nov 6 '08 at 21:20
lol, yep thanks. – Xaisoft Nov 6 '08 at 21:30

3 Answers

vote up 6 vote down check

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.

link|flag
vote up 4 vote down

There is no difference. The "Eval" method is just a shortcut for the DataBinder.Eval(Container.DataItem, "blah") method.

link|flag
vote up 1 vote down

the Eval method is just a shortcut of the latter

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.