The comand:
<jsp:forward = "page.htm"> only shows another page, on the screen.
An example when I'm waiting for an event:
<h1> Wait while when processing </h1>
<% do { %>
<% } while (! file.getSucess()); %>
<!-- Here I put the forward -->
<jsp:forward = "page.htm">
This code above only works if the "file.getSucess()" is already processed. For
example: the method getSucess() wait that something in a file.
What must I do to show the "page.htm" on real time? Is that possible?