What is the best way to use multiple EVAL fields in a GridView ItemTemplate?
Looking to have some control over formatting for appearance as well as setting up hyperlinks/javascript etc.
|
What is the best way to use multiple EVAL fields in a GridView ItemTemplate? Looking to have some control over formatting for appearance as well as setting up hyperlinks/javascript etc. |
||||
|
|
|
Even clearer, IMO, is:
|
|||
|
|
|
Eval and Bind both suck. ((MyObject)Container.DataItem).MyProperty It's not like the object is unknown to you at runtime. That's my two cents, anyhow. |
|||
|
|
|
I had previously used this (bad, I know):
Result = 'John - Smith' But just discovered that I can also put TWO (or more) Evals in the same data-bound group:
Result = 'John - Smith' Or
Result = 'First Name - John, Last Name - Smith' |
|||
|
|