We tried putting the Meta tags in html. It did'nt work. then we used
response.setHeader("----","---"). Even it did'nt work. Sometimes the browser
just picks up the very old file which already has been removed. When we
refresh the page, it shows the correct information. Does that means that the
values are being transfered to this page but somehow my browser is not
picking up the latest values? We are not using any static variables in the
files.
          All these problems are begin noticed only in IE5.0. In NC4.7, the
files runs smoothly without any problems picking up the apporiate latest
values.
          We have emptied the IE cache even it did'nt help.
           Is there any thing wrong in our apporach? I wish somebody has
encountered this sort of problem. We have not been able to diagnose the root
cause. Is it the browser specific?
Please help us out.

Pranav
----- Original Message -----
From: Pratik <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 24, 2000 7:06 PM
Subject: Re: Values Passing Through Session


> Yes Nagrajan is Right.
> You have to give html meta tags to not to cache page.
> try putting the following in your html head:
> <%
> response.setHeader("Cache-Control","no-store"); file://HTTP 1.1
> response.setHeader("Pragma","no-cache"); file://HTTP 1.0
> response.setDateHeader("Expires","0"); file://prevents caching at the
proxy
> server
> %>
>
>
>
> If you wnat to more info then please search this mailing list of
> redirection.
> ----- Original Message -----
> From: Gunaseelan Nagarajan <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Saturday, June 24, 2000 5:43 PM
> Subject: Re: Values Passing Through Session
>
>
> > hi pranav,
> >
> > your problem could be that the previous jsp
> > file was cached by the browser. you could
> > add the html meta tags to force the browser
> > not to cache the page.
> >
> > regards
> > Nagaraj
> >
> > --- pranav kumar <[EMAIL PROTECTED]> wrote:
> > > Hi All,
> > >           I using the JavaWebserver 2.0 on Windows
> > > NT with IE5.0. Let's Say
> > > there are 2 pages a.JSP and b.jsp. IN the A.JSP a
> > > session is created, some
> > > values are put into the session and then by
> > > response.sendRedirect(b.jsp), I
> > > call the B.JSP page. Here at B.JSP, I am retrieving
> > > the values from the
> > > Session and displayed them. Now here the actual
> > > problem is start. When I go
> > > back to the A.JSP page through the back button and
> > > A.JSP call's the B.JSP
> > > ith new values in the Session, B.JSP shows me the
> > > previous results not the
> > > new One.
> > >         Is this the problem with the session. One
> > > more thing I want to clear
> > > that at 2nd time, when I get the previous results,
> > > if I refresh the B.JSP by
> > > click on the refresh button then it show me the
> > > correct results.
> > >         Please help me. Also these two files more
> > > very well with Netscape
> > > 4.7.
> > > Thanks in Advance
> > > With Regards,
> > > Pranav
> > >
> > >
> >
>
===========================================================================
> > > To unsubscribe: mailto [EMAIL PROTECTED] with
> > > body: "signoff JSP-INTEREST".
> > > Some relevant FAQs on JSP/Servlets can be found at:
> > >
> > >  http://java.sun.com/products/jsp/faq.html
> > >  http://www.esperanto.org.nz/jsp/jspfaq.html
> > >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> > >
> > http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
> >
> >
> > __________________________________________________
> > Do You Yahoo!?
> > Get Yahoo! Mail - Free email you can access from anywhere!
> > http://mail.yahoo.com/
> >
> >
>
===========================================================================
> > To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
> JSP-INTEREST".
> > Some relevant FAQs on JSP/Servlets can be found at:
> >
> >  http://java.sun.com/products/jsp/faq.html
> >  http://www.esperanto.org.nz/jsp/jspfaq.html
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
> >  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets
>
>
===========================================================================
> To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
JSP-INTEREST".
> Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to