Displaying busy page while servlet/JSP running

2004-01-19 Thread Chris Ward

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

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



Re: Displaying busy page while servlet/JSP running

2004-01-19 Thread Chris
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]