addemployee.jsp~3~
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" %>
  2. <%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
  3. <%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
  4. <%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
  5. <%@ taglib uri="/WEB-INF/struts-template.tld" prefix="template" %>
  6. <html>
  7. <head>
  8. <title><bean:message key="app.title" /></title>
  9. </head>
  10. <body>
  11. <table width="500"
  12. border="0" cellspacing="0" cellpadding="0">
  13. <tr>
  14. <td>&nbsp;</td>
  15. </tr>
  16. <tr bgcolor="#36566E">
  17. <td height="68" width="48%">
  18. <div align="left">
  19. <img src="images/hp_logo_wiley.gif" width="220" height="74">
  20. </div>
  21. </td>
  22. </tr>
  23. <tr>
  24. <td>&nbsp;</td>
  25. </tr>
  26. </table>
  27. <html:errors />
  28. <html:form action="/Add" name="employeeForm" type="strutsds.EmployeeActionForm" >
  29. <table width="500" border="0">
  30. <tr>
  31. <td><bean:message key="app.username" />:</td>
  32. <td><html:text property="username" /></td>
  33. <td><bean:message key="app.password" />:</td>
  34. <td><html:text property="password" /></td>
  35. </tr>
  36. <tr>
  37. <td><bean:message key="app.name" />:</td>
  38. <td><html:text property="name" /></td>
  39. <td><bean:message key="app.phone" />:</td>
  40. <td><html:text property="phone" /></td>
  41. </tr>
  42. <tr>
  43. <td><bean:message key="app.email" />:</td>
  44. <td><html:text property="email" /></td>
  45. <td><bean:message key="app.department" />:</td>
  46. <td>
  47. <html:select property="depid" size="1">
  48. <html:option value="1">
  49. <bean:message key="app.administration" />
  50. </html:option>
  51. <html:option value="2">
  52. <bean:message key="app.network" />
  53. </html:option>
  54. <html:option value="3">
  55. <bean:message key="app.sales" />
  56. </html:option>
  57. <html:option value="4">
  58. <bean:message key="app.engineering" />
  59. </html:option>
  60. </html:select>
  61. </td>
  62. </tr>
  63. <tr>
  64. <td><bean:message key="app.role" />:</td>
  65. <td>
  66. <html:select property="roleid" size="1">
  67. <html:option value="1">
  68. <bean:message key="app.manager" />
  69. </html:option>
  70. <html:option value="2">
  71. <bean:message key="app.employee" />
  72. </html:option>
  73. </html:select>
  74. </td>
  75. <td colspan="2" align="center">
  76. <html:submit /><html:cancel /><html:reset />
  77. </td>
  78. </tr>
  79. </table>
  80. </html:form>
  81. </body>
  82. </html>