That's no directive of the .page file, these are meta-tags within the
<head> section of the html. Usually Safari makes the most problems with
no-caching tags. The following works for me on Safari, IE and Firefox.



                <META http-equiv="Cache-Control" content="no-store,
no-cache, must-revalidate, max-age=0">
                <META http-equiv="Cache-Control" content="post-check=0,
pre-check=0">
                <meta http-equiv="expires" content="0" >
                <meta http-equiv="Pragma" content="no-cache">

Thanks a lot. I did that but that didn't solved my problem.
The problem was that in my component, one member variable was kept between pages reuse. So the next same page was rendered with the data of the previous page.
Initialized the members to null and all was fine.
Thanks.
-jec

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to