12345678910111213141516171819202122232425262728 |
- <%@ page import="java.util.*" %>
- <%@ page language="java" contentType="text/html; charset=UTF-8"%>
- <%@ page pageEncoding="UTF-8" %>
- <%@ page isELIgnored="false" %>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
- <title>加入新员工</title>
- <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
- <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
- <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
- </head>
- <body>
- <form action="./insertEmployee">
- 员工id:<input type="text" name="id"/>
- 员工名称:<input type="text" name="name"/>
- 员工年龄:<input type="text" name="age"/>
- 员工薪水:<input type="text" name="salary"/>
- 所属部门:<input type="text" name="department"/>
- <input type="submit" value="确定"/>
- </form>
- </body>
- </html>
|