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

Java编程

开发平台:

Java

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