I am trying to create a report generation tool.
I have a
JSP page which is popped up after clicking the “generate report” button in another
JSP page.
It takes some time for the report to be generated and to be displayed in the same popped up window.
Meanwhile, the report is getting generated, I am displaying a moving image(animated image which can considered equivalent to a progress bar) in the
JSP page I referred to above(the popped up window).
I am using the <meta http-equiv=”Refresh” content=”0;"the URL for report generation(in my case an action class)" > tag inside this wait JSP page and the <img> tag for the moving image. But the image in this JSP doesn’t move in IE , it does in Mozilla.
Please help me in this, with some sample code asap. If an alternate approach is possible using only
JSP’s, please help me with the same.