set.jsp
上传用户:sxwtmm
上传日期:2022-08-11
资源大小:2183k
文件大小:2k
源码类别:

OA系统

开发平台:

Java

  1. <%@ page contentType="text/html; charset=gb2312" language="java" errorPage="" %>
  2. <%@ include file="../hear/hear.jsp"%>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  7. <title>员工信息增加</title>
  8. <link href="../css/work.css" rel="stylesheet" type="text/css" />
  9. <script src="../js/oa.js"></script>
  10. <style type="text/css">
  11. <!--
  12. .style1 {
  13. font-size: 16px;
  14. font-family: "宋体";
  15. font-weight: bold;
  16. color: #000000;
  17. }
  18. -->
  19. </style>
  20. </head>
  21. <body bgcolor="#FFFFDF">
  22. <table width="49%" height="370" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
  23. <form name="form1" id="form1" method="post" action="set" onsubmit="return set()">
  24.   <tr>
  25.     <td width="778" height="22" align="center" background="../KCM/zs.gif" bgcolor="#FFFFFF" class="title style1" >员工密码设定</td>
  26.   </tr>
  27.   <tr>
  28.     <td height="50" align="center"  >请输入要设定的员工id序号</td>
  29.   </tr>
  30.   <tr>
  31.     <td height="50" align="center"  ><input type="text" name="id" />
  32.       </td>
  33.     </tr>
  34.   <tr>
  35.     <td height="50" align="center" >请输入要设定的员工密码</td>
  36.   </tr>
  37.   <tr>
  38.     <td height="50" align="center" ><input type="text" name="password" />
  39.       </td>
  40.   </tr>
  41.   <tr align="right">
  42.     <td height="40" align="center"><input type="submit" name="Submit2" value="设定" /></td>
  43.   </tr>
  44.   <tr align="right">
  45.     <td height="40" align="center" class="advise">
  46. <%
  47. String msg=(String)request.getAttribute("msg");
  48. if(msg!=null){
  49. out.print(msg);
  50. }
  51. request.removeAttribute("msg");
  52. %>
  53. &nbsp;</td>
  54.   </tr>
  55.   <tr>
  56.   <tr align="right">
  57.     <td height="40" bgcolor="#FFFFDF"><span class="return" onclick="javascript:document.location='sys.htm';"><img src="../image/more.gif" width="30" height="9" />返回</span>&nbsp;&nbsp;&nbsp;&nbsp;</td>
  58.   </tr>
  59.  
  60. </form>
  61. </table>
  62. </body>
  63. </html>