When databinding to an ASP .NET GridView, how does one change the background color, based on a boolean value that is a column in the data table that the GridView is bound?
For instance if you are bound to a table that has two columns: Name, LikesBurritos. And you want to have the labels of people's names be Blue if they like burritos and white if they don't.
Iterating through the data table or list of objects defeats the purpose of databinding... And there are lots of places we use databinding for the express point of not coding the add of every column while iterating through the set. I'm curious if you can do this declaritivly by using an expresion in the markup...