Hi
I got the solution for this.
I guess this is because of the persistent connection.
Adding response.setHeader("Connection","close") fixed it.
-Shanti
At 10:02 AM 3/30/2001 -0800, you wrote:
>Hi,
>
>I am running tomcat 3.2.1 with apache 1.3.14 on solaris 2.6
>
>I have this weird problem. In one of my servlets I have a form where user
>can update his information
>and when the form is submitted the user gets a "Please wait while
>updating..." page and then redirect
>the user back to the page where he came from before entering the form
>using response.sendRedirect
>method. This work fine in Netscape.
>
>But with IE ( Iam using 5 and didn't test with any other IE versions) it
>displays the
>"Please wait while updating..." page and then it displays HTTP headers and
>then displays the next page
>(all within the same page). Meaning it is not clearing the old Response
>object after going through a
>sendRedirect but appending the new response and displaying the 2 responses
>within the same page
>along with the headers. How do I force it to clear the Response object
>before getting the
>new response?? Any ideas ??
>
>Thanks in advance...Shanti
>