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

📄 edu_add.jsp

📁 该系统对jsp进行了初级编程 实现了ajax下的部门人才管理
💻 JSP
字号:
<%@ page contentType="text/html;charset=GB2312" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    <title></title>
  </head>
<body>
<center>
  <table width="331" border="0">
    <tr>
      <th colspan="2" scope="col">添加培训</th>
    </tr>
    <tr>
      <th width="121" scope="row">培训名称</th>
      <td width="369">
        <input type="text" name="eduName" />
           </td>
    </tr>
    <tr>
      <th scope="row">开始日期</th>
      <td><input type="text" name="startDate" /></td>
    </tr>
    <tr>
      <th scope="row">结束日期</th>
      <td><input type="text" name="endDate" /></td>
    </tr>
    <tr>
      <th scope="row">培训内容</th>
      <td><input type="text" name="content" /></td>
    </tr>
    <tr>
      <th colspan="2" scope="row">
        <input type="submit" name="Submit" value="提交" /> 
        <input type="reset" name="Submit2" value="重置" />
      
      </th>
    </tr>
  </table>

</center>
</body>
</html>

⌨️ 快捷键说明

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