📄 queryproductprice.jsp
字号:
<jsp:useBean id="productClass" class="src.wuyang.ProductClass" scope="page" />
<jsp:useBean id="dept" class="src.wuyang.Department" 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>
<% }
%>
<html>
<head>
<title>查询产品</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="css.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="ProductPricequery.jsp">
<blockquote>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="textb"> <b>
<input type="hidden" name="queryMode" value="1"/>
产品编号:</b></td>
<td>
<input type="text" name="productId" />
</td>
</tr>
<tr>
<td class="textb"><b>产品类别:</b></td>
<td>
<select name="classId">
<option value="">所有</option>
<%
productClass.query("","");
while(productClass.next()== 1 ) {
%>
<option value="<%=productClass.getClassId()%>"> <%=productClass.getClassDesc()%>
</option>
<%
}
%>
</select>
</td>
</tr>
<tr>
<td class="textb"><b>主营部门: </b></td>
<td>
<select name="deptId">
<option value="">所有</option>
<%
dept.query("","");
while(dept.next()== 1 ) {
%>
<option value="<%=dept.getDeptId()%>"> <%=dept.getDeptName()%>
</option>
<%
}
%>
</select>
</td>
</tr>
<tr>
<td colspan="2">
<div align="center"> <br>
<input type="submit" name="Submit" value="提交">
<input type="reset" name="Submit2" value="重置">
</div>
</td>
</tr>
</table>
<p> </p>
<p> <br>
<br>
</p>
<p>
</blockquote>
</form>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -