I need to build a table in a JSP. I have an arraylist with a bunch of beans, and the beans were made from a resultset, just from the rows returned from a DB call.
Depending on the data, I want to show different things. An example would be, if the name in the bean starts with 'a', highlight the name, if it starts with 'b', make the name red but not highlighted (i think that covers my question/situation).
If I do not have logic in the JSP, how would I control this?