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

📄 modifyeduexpinfo.jsp

📁 一个oa系统
💻 JSP
字号:
<%@ page language="java" import="java.util.*,com.oa.db.*"
	pageEncoding="gbk"%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
	<head>
		<title>联信OA-部门办公</title>
		<style type="text/css">
<!--
body,td,th {
	font-size: 13px;
}
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #F9F9F9;
}
a:link {
	text-decoration: none;
}
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:active {
	text-decoration: none;
}
.style2 {font-size: 12px}
.STYLE6 {
	font-size: 16px;
	font-weight: bold;
}
.STYLE7 {font-size: 18px}
-->
</style>
		<script type="text/javascript">
  function checkform(){
     
     return true;
  }
</script>
	</head>

	<body>
		<table width="700" border="0" align="center" cellpadding="0"
			cellspacing="1">
			<tr>
				<td height="20"></td>
				<td height="20"></td>
				<td height="20"></td>
				<td height="20"></td>
			</tr>
		</table>
		<form action="<%=request.getContextPath()%>/savemodifyeduexpinfo.do"
			method="post" name="form" onSubmit="return checkform()">
			<table width="700" border="0" align="center" cellpadding="0"
				cellspacing="1" bgcolor="#999999">
				<tr>
					<td height="20" colspan="4" bgcolor="#D7D7D7">
						&nbsp;修改受教育经历
					</td>
				</tr>

				<%
					List list = (List) request.getAttribute("list");
					if (list != null && list.size() != 0) {
						Eduexpinfo vo = (Eduexpinfo) list.get(0);
				%>
				<tr>
					<td height="20" colspan="4" bgcolor="#FFFFFF">
						&nbsp;从
						<input name="fromyear" type="text" value="<%=vo.getFromyear()%>"
							size="6" />
						<input name="frommonth" type="text"
							value="<%=vo.getFrommonth()%>" size="4" />
						月至
						<input name="toyear" type="text" value="<%=vo.getToyear()%>"
							size="6" />
						<input name="tomonth" type="text" value="<%=vo.getTomonth()%>"
							size="4" />
						月在
						<input name="eduoffice" type="text"
							value="<%=vo.getEduoffice()%>"
							size="15" />
						从事
						<input name="eduprofession" type="text"
							value="<%=vo.getEduprofession()%>"
							size="15" />
						学习.
					</td>
				</tr>
				<tr>
					<td height="20" colspan="4" bgcolor="#FFFFFF">
						&nbsp;证明人
						<input name="prover" type="text" size="15"
							value="<%=vo.getProver()%>" />
						联系电话
						<input name="provertelephone" type="text" size="15"
							value="<%=vo.getProvertelephone()%>" />
					</td>
				</tr>
				<tr>
					<td height="30" colspan="4" bgcolor="#FFFFFF">
						<div align="center">
							<input name="Submit332" type="submit" class="anniu" value="保  存" />
							<input name="id" type="hidden" value="<%=vo.getId()%>" />
							<input name="staffbasicinfoid" type="hidden"
								value="<%=vo.getStaffbasicinfoid()%>" />
						</div>
					</td>
				</tr>
				<%
				}
				%>

			</table>
		</form>
	</body>
</html>

⌨️ 快捷键说明

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