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 webservices in java?
What are the components of j2ee applications?
What is a component in java?
What do you mean by the component contract?
What are java front end tools?
What is empty tag?
Is java good for web development?
What is meant by j2ee?
J2ee is a container centric architecture. Explain.
What are the most important topics in java?
Possible ways for debugging java ,javascript,jsp and servlet. Can we use System.out.println debugging java.
What is j2ee component?