querysuperyearcheckupshow.jsp
来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· JSP 代码 · 共 79 行
JSP
79 行
<%@ page import="java.util.*"%>
<%@ page contentType="text/html; charset=GBK" %>
<%@page import="java.util.*,com.gs.util.*"%>
<%
try{
ArrayList YearCheckupShowList= new ArrayList();
YearCheckupShowList=(ArrayList)request.getAttribute("YearCheckupShowList");
String SN="";
String BID="";
String isShowFlag="0";
if(YearCheckupShowList!=null&&YearCheckupShowList.size()>1){
Debug.println("YearCheckupShowLIst error!");
SN=(String)YearCheckupShowList.get(0);
BID=(String)YearCheckupShowList.get(1);
isShowFlag="1";
}
if("1".equals(isShowFlag)){
%>
<html>
<head>
<title>
请稍后...
</title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/include/style/reportStyle.css" type="text/css">
</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()%>/enterpriseAction.do?action=1007&BID=<%=BID%>&SN=<%=SN%> method=post>
</FORM>
<script>
document.report.submit();
</script>
</body>
</html>
<%
}else{%>
<html>
<head>
<title>
没有该企业的年检记录!
</title>
<link rel="stylesheet" href="<%=request.getContextPath()%>/include/style/reportStyle.css" type="text/css">
</head>
<body class="businessBody01">
<center>
<table border="0" cellpadding="0" cellspacing="0" width="100%" id="AutoNumber1" height="100%">
<tr>
<td width="100%" height="30%">
<p align="center">
<font class="textNoPrint textWarnPrompt"><b>没有该企业的年检记录!</b></font>
<br><br>
<input type="button" name="button" value=" 关 闭 " onclick="window.close()" class="button" onmouseover="this.className='mouseover'" onmouseout="this.className='button'" >
</td>
</tr>
<tr>
<td width="100%" ></td>
</tr>
</table>
</body>
</html>
<%
}
}
catch(Exception e){
out.println("querSuperYearCheckupShow.jsp:"+e.getMessage());
}%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?