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

📄 analysishead.jsp

📁 java jsp教程
💻 JSP
字号:
  <form name="form1" method="post" >
  <input type="hidden" name="unitcode" value='<c:out value="${unitcode}"/>'>
  <input type="hidden" name="entry" value='<c:out value="${param.entry}"/>'>
  <table width="810" border="0" cellspacing="1" cellpadding="0" bgcolor="#426199" align=center>
  <TR bgcolor="#a6d0f2">
              <TD width="14%" colspan="4" height=25 align=middle>
              <div align="center" size="6">
              		<font size="2" color="red">
              		<%
              			String entry=request.getParameter("entry");
              			if("1".equals(entry))
              				out.print("审出问题同期比分析");
              			else if("2".equals(entry))
              				out.print("审出问题同级比分析");
              			else if("3".equals(entry))
              				out.print("审出问题构成比分析");
              			else
              				out.print("");
              		%>
              		 &nbsp;</font>查询条件</font>
              </div>
              </TD>
            </TR>
      <tr bgcolor="#a6d0f2"> 
        <TD width="186" height="10" align="left"><div align="right">选择单位:</div> </TD>
        <TD width="621" height="25" bgcolor="#a6d0f2">
			<div align="left">
 	  			<input type="text" name="unitname" value='<c:out value="${unitname}"/>' readonly size="20">
				<img src="/cnpc/images/icon-15.gif" alt="选择单位" 
					width="22" height="15" class="bt1" 
					style="cursor:hand;" onClick="selectUnit()">
				</div>
		</TD>
      </tr>
      <tr bgcolor="#a6d0f2"> 
        <td align="left"><div align="right">审计时间:</div> </td>
        <td bgcolor="#a6d0f2">
			<div align="left">
				<select name="projectyear" style="width:87" >
					   		<option value="9999" >全部</option>
	              <% 
	              	String projectyear = (String)request.getParameter("projectyear");
	              	if(projectyear != null) 
	              		out.print( CommUtil.mkYearOptions(Integer.valueOf(projectyear)) );
	              	else 	
	              		out.print( CommUtil.mkYearOptions(null) );
	              %>
              </select>年
              <%
              	String quart = request.getParameter("quart");
              %>
			  <select style="width:70" name="quart">
				<option value="0" <%if("0".equals(quart)) out.print("selected"); %>>全年</option>
				<option value="1" <%if("1".equals(quart)) out.print("selected"); %>>第一季度</option>
				<option value="2" <%if("2".equals(quart)) out.print("selected"); %>>第二季度</option>
				<option value="3" <%if("3".equals(quart)) out.print("selected"); %>>第三季度</option>
				<option value="4" <%if("4".equals(quart)) out.print("selected"); %>>第四季度</option>
			  </select>
			</div>
		</td>
      </tr>
	  <tr bgcolor="#a6d0f2"> 
        <td align="left"><div align="right">问题类型:</div> </td>
        <td bgcolor="#a6d0f2">
			<div align="left">
				<%
					String problemtype = request.getParameter("problemtype");
				%>
				<select style="width:100" name="problemtype">
					<option value="0" <%if("0".equals(problemtype)) out.print("selected");%>>财务问题</option>
					<option value="1" <%if("1".equals(problemtype)) out.print("selected");%>>基建问题</option>
					<option value="2" <%if("2".equals(problemtype)) out.print("selected");%>>合同问题</option>
				</select>
			</div>
		</td>
      </tr>
    </table>
	<div align="center">
	<img src="<%=root%>/images/search.gif" name="Submit" style="cursor:hand;" 
		alt="查    询" class="bt1" onClick="_search()">
	&nbsp;&nbsp;&nbsp;
	<!--img src="<%=root%>/images/chzh.gif" name="clear" style="cursor:hand;" alt="清空查询条件" 
		class="bt1" onClick="_clear()"-->
	</div>
  </form>  

⌨️ 快捷键说明

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