Should one bind data with Eval on aspx or override ItemDataBound in code-behind?
- by George Chang
For data bound controls (Repeater, ListView, GridView, etc.), what's the preferred way of binding data?
I've seen it where people use Eval() directly on the aspx/ascx inside the data bound control to pull the data field, but to me, it just seems so...inelegant. It seems particularly inelegant when the data needs to be manipulated so you wind up…