David Du wrote: > > Thanks > Hi, I am running a problem with servlet, I have a servlet which get data > from one backend database and send the data to another database, this > process is done when users browser our website. My issue is that I don't > have any data sent back to the browser displayed on a page, but the server > is trying to send back an empty white page, so the It is running the busy > cusor all the time until the servlet process is done, actually we need to > load another page immediately after the servlet starts, so the white page > comes after the other page, I want to write codes(javascript, html, or > others) to similate clicking the stop button on the browser toolbar like > window.stop(), but this only works for Netscape, not for IE5.01, would you > guys please help me with this issue ? > Thank you very much in advance ! In my opinion, you should always send some response back to the user. That is the model of HTTP transactions: there is a request AND a response. You don't need anything fancy, a simple page that says "Thanks for your submission" is good enough, as long as the user gets some indication that their action was accepted. K Mukhar ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
