📄 traincertificateupdate.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ page import="com.galaxy.vo.*" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<SCRIPT language=javascript src="calendar.js"></SCRIPT>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>修改员工证书记录</title>
<link rel="stylesheet" type="text/css" href="../../css/css.css">
</head>
<script>
<!-- 页面返回 -->
function GoBack()
{
history.back();
}
function Update()
{
document.update.action="TR_CertRecordServlet";
document.update.opFlag.value="Update";
document.update.submit();
}
</script>
<%
CertRecordVO crvo = new CertRecordVO();
crvo = (CertRecordVO)request.getAttribute("crvo");
%>
<body>
<form name="update" mothed = "post" action="">
<input type="hidden" name="opFlag" >
<input type="hidden" name="crid" value=<%=crvo.getCrId()%>>
<h1 align="center">修改员工证书记录</h1>
<table width="70%" height="225" border="0" cellspacing="0" align="center" class="toBeSetBgColor">
<tr>
<th width="22%" height="40" align="right" scope="row"> 学员姓名:</th>
<td width="78%">
<input type="text" name="name" readOnly="true" value=<%=crvo.getUserInfo().getUiRealname()%>>
</td>
</tr>
<tr>
<th width="22%" height="40" align="right" scope="row">性别:</th>
<td width="78%">
<input type="text" name="sex" name="name" readOnly="true" value=<%=crvo.getUserInfo().getUiSex() %>>
</td>
</tr>
<tr>
<th width="22%" height="40" align="right" scope="row">职务:</th>
<td width="78%">
<input type="text" name="zhiwu" readOnly="true" value=<%=crvo.getUserInfo().getUiZhiwu()%>>
</td>
</tr>
<tr>
<th width="22%" height="40" align="right" scope="row"> 学员ID:</th>
<td width="78%">
<input type="text" name="personID" readOnly="true" value=<%=crvo.getUserInfo().getUiPersonid() %>>
</td>
</tr>
<tr>
<th height="40" align="right" scope="row"> 证书名称: </th>
<td>
<select name="CrName" style="width: 119px; height: 22px" >
<option selected>java工程师</option>
<option>c#工程师</option>
<option>.net工程师</option>
<option>体系架构师</option>
<option>网络工程师</option>
<option>数据库工程师</option>
</select>
</td>
</tr>
<tr>
<th height="40" align="right" scope="row"> 证书类别: </th>
<td>
<input type ="text" name="CRClass" value=<%=crvo.getCrClass()%> >
</td>
</tr>
<tr>
<th height="40" align="right" scope="row">证书号:</th>
<td>
<input type="text" name="CrNumber" value=<%=crvo.getCrNumber()%> >
</td>
</tr>
<tr>
<th height="40" align="right" scope="row">证书日期:</th>
<td><input type="text" name="CrDate" value=<%=crvo.getCrDate()%> readonly="yes">
<a title=选择日期 href="javascript:fPopCalendar(document.all.img1,document.update.CrDate,250);" style="text-decoration:none">
<img id=img1 src="img_date.gif" width="22" align=absMiddle border=0></a></td>
</tr>
<tr>
<th height="40" align="left" scope="row"> </th>
<th height="40" align="left" scope="row"><input type="submit" value="提交" onclick="return Update()" style="width: 50px; height: 25px"> <input type="reset" name="" value="重置" style="width: 50px; height: 25px"> <input type="button" value="返回" onclick="return GoBack()" style="width: 50px; height: 25px"></th>
<inp>
</tr>
</table>
<p align="center"> </p>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -