what is external varibles in jsp?
Answer / ram nidadavolu
you can use application.setAttribute("variablename", Object
value);
ie Integer globalVariable = new Integer(15);
application.setAttribute("global", globalVariable);
to retrieve it you would
Integer globalVariable =
(Integer)application.getAttribute("global");
etc.. this can be passed on between pages
| Is This Answer Correct ? | 5 Yes | 4 No |
What is java awt event?
Is core java and j2se same?
What are the differences between Ear, Jar and War files? Under what circumstances should we use each one?
Explain connector architecture.
Use of private variable while creating properties ???
How many java languages are there?
Give some advantages of orm (object-relational mapping)?
What is japplet in java?
Every field has setter and getter methods.what is happening in this methods.
What is ejb container provider?
What is filter chain?
What does enterprise javabeans module contain?