文件结构

add.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<%@include file="link.html" %>
</head>
<body>
<%@include file="header.html" %>
<form id="form1" name="form1" method="post" action="ResumeService?method=add">
<table border="1" style="margin-left:200px;">
<tr>
<td scope="row">姓名:</td>
<td><input type="text" name="username"></td>
<td>性别:</td>
<td><input type="text" name="sex"></td>
<td rowspan="5">照片</td>
</tr>
<tr>
<td scope="row">出生年月:</td>
<td><input type="date" name="birth"></td>
<td>民族:</td>
<td><input type="text" name="ethnic"></td>
</tr>
<tr>
<td scope="row">籍贯:</td>
<td><input type="text" name="native"></td>
<td>政治面貌:</td>
<td><input type="text" name="politic"></td>
</tr>
<tr>
<td scope="row">本科专业:</td>
<td><input type="text" name="mayor"></td>
<td>毕业学校:</td>
<td><input type="text" name="school"></td>
</tr>
<tr>
<td scope="row">联系电话 :</td>
<td><input type="text" name="telephone"></td>
<td>E-mail:</td>
<td><input type="email" name="email"></td>
</tr>
<tr>
<td colspan="5"> 技能、特长或爱好:<br>
<textarea rows="5" cols="80" name="skill"></textarea>
</td>
<tr>
<td colspan="5"> 个人简历:<br>
<textarea rows="5" cols="80" name="experience"></textarea>
</td>
</tr>
<tr>
<td colspan="5"> 自我评价:<br>
<textarea rows="5" cols="80" name="evaluation"></textarea>
</td>
</tr>
</table>
<input type="submit" value="提交" style="margin-left:300px;">
</form>
</body>
</html>
备注