| Author |
Problems on Refresh
|
Adrian Muscalu
Ranch Hand
Joined: May 08, 2000
Posts: 73
|
|
My JSP page reads some data from a bean. The problem is that when a refresh appears, my page does not read anymore from the bean; instrad, it shows the values from the first initialization. Where could be the problem? Yours greenhorn, Ady
|
SCJP2, SCWCD
|
 |
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12265
|
|
It sounds like you are getting a new Bean with every request-response transaction. If you want to save the state of the Bean between calls, you will have to attach it to the session with setAttribute() or make other provision for preserving it. Bill
|
Java Resources at www.wbrogden.com
|
 |
Adrian Muscalu
Ranch Hand
Joined: May 08, 2000
Posts: 73
|
|
Thank you for your reply Bill; in the meantime I've found a solution that is more suitable to my case: <meta http-equiv="Expires" content="0"> produces exactly the effect that I wanted. Regards, Ady
|
 |
 |
|
|
subject: Problems on Refresh
|
|
|