乌拉圭回合谈判的特点:asp 提交 等待画面

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/11 04:04:03
asp中我做了个提交页比如1.asp和一个接受处理的页比如2.asp,由于同时要处理的数据特多(有可能是好几百条记录),我希望在1和2之间插入一个处理等待显示页面(就是在提交以后就出现直至处理完),请问应该如何做?
回复采用后追加20分,最好是写出代码

<html>
<head>
<script Language="JavaScript">
self.onerror=null;
var nullframe = '<HTML><BODY BGCOLOR=#003366 text=#ffffff><center><H3 color=#ffffff>正在读取资料, 请稍候 ......</h3></center></BODY></HTML>';
</script>
<frameset>
<frame name="my" src="javascript:parent.nullframe" scrolling="auto" frameborder=1>
<frame name="sd" scrolling="no" noresize src="2.asp" >
</frameset>
</head>
</html>