I have a .jsp that, based on parameters, can have 1 or 2 tables. If only one of the parameters is fulfilled I want to have the table centered. If both parameters are fulfilled I want to float one table left and float the other table right. I can take care of the floating part, I am just unsure on how to have the other condition. I would think this can be done with some sort of ‘if’ statement….?
Share
You’ll most likely need to use a combination of
<c:choose />and<c:if />.Hope this helps.