📄 pagepreparative.jsp
字号:
<%@ page import="java.util.*"%>
<%@ page contentType="text/html; charset=GBK" %>
<%@page import="java.util.*,com.gs.util.*"%>
<%
HashMap pageParMap= new HashMap();
pageParMap=(HashMap)request.getAttribute("pageParMap");
ArrayList sub=new ArrayList();
try{
%>
<html>
<head>
<title>
请稍候...
</title>
</head>
<body>
<center>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="AutoNumber1" height="100%">
<tr>
<td width="100%" height="30%">
<p align="center">
<image src="<%=request.getContextPath()%>/images/wait.gif" border=0>
<br><font class=textCenter>请稍候...</font>
</td>
</tr>
<tr>
<td width="100%" ></td>
</tr>
</table>
<FORM name=report action=<%=request.getContextPath()%>/pageBuilderAction.do?action=1002 method=post>
<%
String strtemp;
int i;
for (i=0;i<pageParMap.size();i++) {
sub=(ArrayList)pageParMap.get(new Integer(i));
out.println("<INPUT name="+sub.get(0)+" size=15 value=\""+sub.get(1)+"\" type='hidden'>");
}
%>
</FORM>
<script>
document.report.submit();
</script>
</body>
</html>
<%
}
catch(Exception e){
out.println(e.getMessage());
}%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -