如何在JSP中实现进度条?

时间:2009-06-22 05:56:28

标签: jsp progress-bar

我正试图在我的jsp上模拟进度条。我在div标签中包含了一个gif文件,当最初加载页面时不会显示该文件。

我想在用户提交页面时显示gif文件。提交在后台运行的大型数据库活动。

我面对gif文件的问题会失去动画效果。

请帮帮我。

<div id="progress" style="display: none">
<table>
    <tr>
        <td colspan="2" align="center">Please do not refresh or hit
        back button while processing</td>
    </tr>
    <tr>
        <td colspan="2" align="center">Please wait while importing....</td>
    </tr>
    <tr>
        <td colspan="2" align="center"><IMG
        SRC="${outputBean.contextRoot}/images/greenLoader.gif" WIDTH="265"
            HEIGHT="15" BORDER="0" ALT="" id="progress"></td>
    </tr>
</table>
</div>

0 个答案:

没有答案