|
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
Regard,
Pete Dolukhanov
|
- Where should I store image files? Antony Stace
- Query problem JavaSoft
- Re: Query problem Bert Van Kets
- Re: Query problem JavaSoft
- external variable Luis Javier Beltran
- Re: Where should I store image f... Peter Dolukhanov
- Re: Where should I store image files? Daniel Jaffa
