⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 querydefineeditchangelist.jsp

📁 一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs12315src里,没有打包数据库.
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK"
    import="java.util.*,com.gs.util.*,
    com.gs.control.event.*,
    com.gs.pageBuilder.model.*"
%>
<%
String td="businessTd00";
String SN = (String)request.getAttribute("SN");
String BID = (String)request.getAttribute("BID");
String innerID = (String)request.getAttribute("innerID");
String yearCheckupY = (String)request.getAttribute("yearCheckupY");
QueryPageDefine queryPageDefine;

ArrayList queryList = (ArrayList)request.getAttribute("queryList");
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>备案情况-变更</title>
<script language="javascript">
function openWin(url){
	var w = 794;
	var h = 550;
	if (screen.width == 1024){
		w = 1018;
		h = 720;
	}
	window.open(url,"","toolbar=no,resizable,scrollbars,dependent,width="+w+",height="+h+",top=0,left=0");
}
</script>
<link href="<%=request.getContextPath()%>/include/style/style01/style.css" rel="stylesheet" type="text/css">
</head>
<body class="businessBody01">
 <center>
<table  border="0" width="90%">
		<tr>
		  <td><img src="<%=request.getContextPath()%>/images/bg3.gif" border="0" >&nbsp;<font class="textBusinessTitle">备案情况</font></td>
		</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="90%">
 <tr >
    <td width="100%">
<%
if (queryList!=null && queryList.size()>0)
{
%>
     <table border="1" width="100%" class=businessTable00>
       <tr>
            <td  width="39%" height="31" class="businessTdTitle00"> 项目名称</td>
            <td height="31" width="10%"  class="businessTdTitle00" > 操作</td>
            <td  width="39%" height="31" class="businessTdTitle00"> 项目名称</td>
            <td height="31" width="10%"  class="businessTdTitle00" > 操作</td>
      </tr>
<%for(int i=0;i<queryList.size();i++){
	if (i%2==0){
		out.println("<tr>");
	}
	queryPageDefine = (QueryPageDefine)queryList.get(i);
	/*修改 glt 以下根据页面定义的不同调用不通的EVENT进行处理 2004-04-08 10:36*/
	String pagetype = queryPageDefine.getPageType();
	String action = String.valueOf(PageBuilderEvent.query_defineEditChangeShow);
	if("2".equals(pagetype)){
		action = String.valueOf(PageBuilderEvent.query_defineEditShow);
	}
	/*修改 glt 以上根据页面定义的不同调用不通的EVENT进行处理 2004-04-08 10:36*/
	td=td.equals("businessTd00")?"businessTd01":"businessTd00";%>
	<td height=30 class="<%=td%>Left">&nbsp;&nbsp;<a href="javascript:openWin('<%=request.getContextPath()%>/pageBuilderAction.do?action=<%=action%>&innerID=<%=innerID%>&yearCheckupY=<%=yearCheckupY%>&SN=<%=SN%>&BID=<%=BID%>&code=<%=queryPageDefine.getCode()%>')" title="修改<%=PubFunc.toShow(queryPageDefine.getExplain())%>" ><%=PubFunc.toShow(queryPageDefine.getExplain())%></a></td>
	<td  class="<%=td%>"><a href="javascript:openWin('<%=request.getContextPath()%>/pageBuilderAction.do?action=<%=action%>&innerID=<%=innerID%>&yearCheckupY=<%=yearCheckupY%>&SN=<%=SN%>&BID=<%=BID%>&code=<%=queryPageDefine.getCode()%>')" title="修改<%=PubFunc.toShow(queryPageDefine.getExplain())%>" >修改</a></td>
	<%	if (i%2!=0)out.print("</tr>");
}//for
if ((queryList.size())%2!=0){
		out.println("<td height=30 class='"+td+"'> <div align=center>&nbsp;</div></td><td height=30 width=11% class='"+td+"'> <div align=center>&nbsp;</div></td></tr>");
	}
%>
     </table>
<%
}//if queryList
%></td>
 </tr>
 </table>
 <br>
<input name="button3" type=button value=关闭窗口 class="button" onmouseover="this.className='mouseover'" onmouseout="this.className='button'" onClick="window.close()">
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -