employeeAdd.jsp
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:4k
源码类别:

Java编程

开发平台:

Java

  1. <%@ page contentType="text/html;charset=GBK" language="java" %>
  2. <%@ page import = "StudyNote.*" %>
  3. <%@ page import = "java.util.*" %>
  4. <%
  5. Vector v = (Vector)session.getAttribute(Constants.DEP_LIST_KEY);
  6. Dep dep = null;
  7. %>
  8. <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %> 
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  12. <LINK href="images/style.css" rel=stylesheet>
  13. <title></title>
  14. </head>
  15. <body>
  16. <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1" bgcolor="#FFCC66">
  17.   <tr>
  18.     <td width="84%" bgcolor="#FFFFFF">
  19. <DIV align=left><B><FONT color=#ff9900>个人信息 </FONT></B></DIV>
  20. <html:form action="empAdd.do" method="post">
  21. <TABLE cellSpacing=0 borderColorDark=#cccccc cellPadding=0 width=540 
  22. borderColorLight=#ffffff border=1>
  23.   <TBODY>
  24.   <TR>
  25.     <TD style="text-align: left">
  26.       <DIV align=center><FONT color=#ff9900><B><FONT 
  27.       size=2>姓&nbsp;&nbsp;名*</FONT></B></FONT></DIV></TD>
  28.     <TD style="text-align: left"><FONT size=2><INPUT name=name size="20"> </FONT></TD>
  29.     <TD style="text-align: left">
  30.       <DIV align=center><FONT color=#ff9900 size=2><B>学历 </B></FONT></DIV></TD>
  31.     <TD style="text-align: left"><FONT size=2>
  32.     <INPUT maxLength=18 name=degree size="20"> </FONT></TD></TR>
  33.   <TR>
  34.     <TD style="text-align: left">
  35.       <DIV align=center><B><FONT color=#ff9900 
  36.       size=2>性&nbsp;&nbsp;别*</FONT></B></DIV></TD>
  37.     <TD style="text-align: left"><FONT size=2><INPUT type=radio CHECKED value=男 name=sex> 男 <INPUT 
  38.       type=radio value=女 name=sex> 女 </FONT></TD>
  39.     <TD style="text-align: left">
  40.       <DIV align=center><B><FONT color=#ff9900 size=2>出生日期* </FONT></B></DIV></TD>
  41.     <TD style="text-align: left"><FONT size=2>
  42.     <INPUT title=必须按照 yyyy/mm/dd 格式输入 
  43.        value=yyyy/mm/dd name=birthday size="20"> </FONT></TD></TR>
  44.   <TR>
  45.     <TD style="text-align: left" valign="top">
  46.       <DIV align=center><font color="#FF9900"><b>联系方式</b></font></DIV></TD>
  47.     <TD style="text-align: left"><FONT size=2><INPUT name=tel size="20"> </FONT></TD>
  48.     </TR>
  49.   </TBODY></TABLE>
  50. <P> </P>
  51. <DIV align=left><b><font color="#ff9900">部门</font></b></DIV>
  52. <TABLE cellSpacing=0 borderColorDark=#cccccc cellPadding=0 width=526 
  53. borderColorLight=#ffffff border=1 height="248">
  54.   <TBODY>
  55.   <TR>
  56.     <TD width=87 style="text-align: left" height="19">
  57.       <DIV align=center><font size="2" color="#FF9900"><b>所在部门</b></font></DIV></TD>
  58.     <TD width=447 style="text-align: left" height="19"><B><FONT size=2><SELECT name=depId> 
  59.  
  60.    <%if(v != null ){
  61.        for(int i = 0;i < v.size();i++)
  62.        {  
  63.         dep = (Dep)v.get(i);
  64.        %>
  65.     <option value=<%=dep.getId()%>> <%=dep.getName()%></option>
  66.     
  67.           <%
  68.           }
  69.        }
  70.       %>
  71.     
  72.     </SELECT> 
  73.       </FONT></B></TD></TR>
  74.   <TR>
  75.     <TD width=87 style="text-align: left" height="20">
  76.       <DIV align=center><font size="2" color="#FF9900"><b>职务</b></font></DIV></TD>
  77.     <TD width=447 style="text-align: left" height="20"><B><FONT size=2>
  78.     <SELECT name=duty> 
  79.     <option>员工</option>
  80.     <option>总经理</option>
  81.     <option>主管</option>
  82.     </SELECT></FONT></B></TD></TR>
  83.   <TR>
  84.     <TD colSpan=2 style="text-align: left" width="536" height="13"></TD></TR>
  85.   <TR>
  86.     <TD width=87 style="text-align: left" height="169">
  87.       <P align=center><FONT color=#ff9900><B><FONT 
  88.       size=2>工作经历</FONT></B></FONT></P>
  89.       <P align=center> </P></TD>
  90.     <TD width=447 style="text-align: left" height="169">
  91.       <p align="center">
  92.       <textarea rows="10" name="exp" cols="61"></textarea></p>
  93.     <p> </TD></TR>
  94.   </TBODY></TABLE>
  95. <DIV align=left> </DIV>
  96. <P align=center><FONT size=2><INPUT type=submit value=提交> <INPUT type=reset value=重填> </FONT></P>
  97.     <p> </td>
  98.   </tr>
  99. </table>
  100. </html:form>
  101. </body>
  102. </html>