"Chris Ward" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]

Hi all,

Does anyone have a recommended way of displaying a
"busy" page while tomcat executes a servlet or JSP?

I've done this before using JavaScript to flip the
display to "busy" on the client, but I wondered if
there was a more generic way using Filters or something.

Many thanks as always,
Chris

Try this:

<html>
I'm busy now.
<%
out.flush();
// run code here
%>
I'm done.
</html>




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

Reply via email to