⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 employeeform.jsp

📁 struts做得固定资产管理系统 带毕业论文完整版
💻 JSP
字号:
<%@ page language="java" pageEncoding="gb2312"%>
<%@ include file="/commons/taglibs.jsp" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>${CompanyName}--${ProjectName}</title>
    <%@ include file="/commons/meta.jsp" %>
  </head>   
  <body>   
 <div id="content">    
    <TABLE cellSpacing="1" cellPadding="2" width="85%" align="center" border="0">
      <TBODY>
      <TR>
          <TD align=center><h2><Strong><bean:message key="employeeForm.top"/></Strong></h2></TD>
      </TR>
      </TBODY>
    </TABLE>    
    <hr width="90%">    
    <html:form action="employee" method="post">
        <html:hidden property="p" value="save"/>
        <html:hidden property="id"/>          
    <TABLE class=small cellSpacing="1" cellPadding="2" width="70%" align="center" bgColor="#000000" border="0">
      <TBODY>
      <TR>
          <TD class=TableLabel width="35%"><bean:message key="employeeForm.name"/>: </TD>
          <TD class=TableData> <html:text property="name" size="50%" styleClass="BigInput"/></TD>
      </TR>
       <TR>
          <TD class=TableLabel width="35%"><bean:message key="employeeForm.sex"/>:</TD>
          <TD class=TableData>
          		<html:select property="sex">
          			<html:option value="">----请选择该员工的性别----</html:option>
          			<html:option value="男">男</html:option>
          			<html:option value="女">女</html:option>
          		</html:select>
           </TD>
      </TR>
       <TR>
          <TD class=TableLabel width="35%"><bean:message key="employeeForm.age"/>:</TD>
          <TD class=TableData> <html:text property="age"  size="50%" styleClass="BigInput"/></TD>
      </TR>
       <TR>
          <TD class=TableLabel width="35%"><bean:message key="employeeForm.deptmentId"/>:</TD>
 		  <TD class=TableData> 
	 		  <html:select property="deptmentId">
		 		  <html:option value="">----请选择该员工所在的部门----</html:option>
		 		  <html:options collection="deptments" property="id" labelProperty="name"/>
	 		  </html:select>
          </TD>
      </TR>
       <TR>
          <TD class=TableLabel width="35%"><bean:message key="employeeForm.postcard"/>:</TD>
          <TD class=TableData> <html:text property="postcard" size="50%"  styleClass="BigInput"/></TD>
      </TR>
       <TR>
          <TD class=TableLabel width="35%"><bean:message key="employeeForm.telephone"/>:</TD>
          <TD class=TableData> <html:text property="telephone" size="50%" styleClass="BigInput"/></TD>
      </TR>
       <TR>
          <TD class=TableLabel width="35%"><bean:message key="employeeForm.address"/>:</TD>
          <TD class=TableData> <html:text property="address" size="50%" styleClass="BigInput"/></TD>
      </TR>
      <TR>
          <TD class=TableButton colspan=2 align=center>
            <input type="submit" value="提交" class="BigButton">
            <input type="button"  value="返回" onClick="history.back(-1);" class="BigButton">
          </TD>
      </TR>
      </TBODY>
    </TABLE>    
</html:form>   
    </div>    
  </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -