J
jill
I have declared a variable rowcolor. If i use c
ut that works. So
following two line of code is worknig.
<c:set var="rowColor" value="even" scope="page"/>
<tr class="<c
ut value='${rowColor}'/>">
But when i use below coe it does not work.
<tr class="${rowColor}">
HTML spits out <tr class="${rowColor}"> as this
where as in c
ut version it spits out <tr class="even">
Can any body pls tell me why <tr class="${rowColor}"> is not working.
following two line of code is worknig.
<c:set var="rowColor" value="even" scope="page"/>
<tr class="<c
But when i use below coe it does not work.
<tr class="${rowColor}">
HTML spits out <tr class="${rowColor}"> as this
where as in c
Can any body pls tell me why <tr class="${rowColor}"> is not working.