employeeQuery.jsp
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:1k
- <%@ page contentType="text/html;charset=GBK" language="java" %>
- <%@ page import = "StudyNote.*" %>
- <%@ page import = "java.util.*" %>
- <%
- Vector v = (Vector)session.getAttribute(Constants.DEP_LIST_KEY);
- Dep dep = null;
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <title></title>
- <LINK href="images/style.css" rel=stylesheet>
- </head>
- <body>
- <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" bgcolor="#FFCC66">
- <tr>
- <td width="84%" bgcolor="#FFFFFF"><form action="empQuery.do" method="post">
- <DIV align=left style="width: 522; height: 84"><b>
- <font color="#ff9900" size="2"> 部门</font></b><select size="1" name="depId">
- <option value=0></option>
- <%if(v != null ){
- for(int i = 0;i < v.size();i++)
- {
- dep = (Dep)v.get(i);
- %>
- <option value=<%=dep.getId()%>> <%=dep.getName()%></option>
-
- <%
- }
- }
- %>
-
- </select><p><b><font color="#ff9900" size="2"> 员工姓名</font><FONT size=2><INPUT name=name size="20"></FONT></b></DIV>
- <P align=center><FONT size=2> </FONT>
- <input type="submit" value="提交" name="B1"></P>
- <p></form> </td>
- </tr>
- </table>
- </body>
- </html>