| Author |
print formbean values
|
deep menghani
Greenhorn
Joined: Oct 07, 2010
Posts: 7
|
|
hi...
I have a condition for checking if two values are equal or not
<logic:notEqual name='orderDetailsForm' property='<%="sysOrderID[" + element + "]"%>' value ='<%="invoiceNumber[" + element + "]"%>'>
</logic:notEqual>
i want to print values for sysorderID and invoiceNumber currently for the condition..
how to print these values on jsp???
|
 |
Alpesh Gediya
Greenhorn
Joined: Nov 23, 2009
Posts: 24
|
|
Use
out.println(variablename);
to print value of the variable.. if you want to log it... then use System.out.println(variablename);
|
Alpesh Gediya
Do not re-invent the wheel.
|
 |
 |
|
|
subject: print formbean values
|
|
|