?? queryallocat.jsp
字號:
<%@ taglib prefix="task" uri="/jsp/tld/WuYangTag.tld" %>
<jsp:useBean id="Allocat" class="src.wuyang.Allocat" scope="page"/>
<jsp:useBean id="global" class="src.com.MyGlobal" scope="session"/>
<% if (global.isLogined == false) {
%>
<jsp:forward page="../pub/DBErr.jsp" >
<jsp:param name="rtcode" value="-4" />
</jsp:forward>
<% }
%>
<%
String state[] = {"要求部門審核","部門審核通過","部門審核不通過","高層審核不通過","高層審核通過"};
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="css.css" type="text/css">
</head>
<body bgcolor="#949B93" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="1" height="90%" cellspacing="0" cellpadding="0" align="center" bordercolorlight="#616860" bordercolordark="#CCCCCC" bgcolor="#4c7171" >
<tr>
<td valign="top" >
<br><br>
<form method="post" action="Allocatquery.jsp"> <blockquote>
<table border="0">
<tr>
<td class="textb"><b>調撥單編號 : </b></td>
<td>
<input type="text" name="allocatId" />
</td>
</tr>
<tr>
<td class="textb"><b>部門名稱 : </b></td>
<td>
<select name="subCompanyId">
<task:dept showType="select"/>
</select>
</td>
</tr>
<tr>
<td class="textb"><b>申請人 : </b></td>
<td>
<input type="text" name="proposer" />
</td>
</tr>
<tr>
<td class="textb"><b>調撥單狀態:</b></td>
<td>
<select name="purchState">
<option value=""> </option>
<% for(int j=0;j<5;j++) { %>
<option value="<%=j%>"><%=state[j]%></option>
<%}%>
</select>
</td>
</tr>
<tr>
<td class="textb"><b>形式 :</b></td>
<td>
<select name="format">
<option value=""></option>
<option value="1">計劃外</option>
<option value="0">計劃內</option>
</select>
</td>
</tr>
<tr>
<td colspan="2" class="textb">
<div align="center" class="textb"> <b><br>
<input type="submit" name="Submit" value="提交" />
<input type="reset" value="重置" name="reset" />
</b></div>
</td>
</tr>
</table>
<p>
<%
if (request.getParameter("mode")==null){
%>
<br>
<br>
<br>
<br>
<%
}
%>
</p></blockquote>
</form>
</td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -