📄 traincertificateview.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();
}
</script>
<%
CertRecordVO crvo = new CertRecordVO();
crvo = (CertRecordVO)request.getAttribute("crvo");
%>
<body>
<form name="form1" mothed = "post" action="">
<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>
<input type="text" name="CRName" readOnly="true" value=<%=crvo.getCrName() %>>
</td>
</tr>
<tr>
<th height="40" align="right" scope="row"> 证书类别: </th>
<td>
<input type ="text" name="CRClass" value=<%= crvo.getCrClass()%> readOnly="true" >
</td>
</tr>
<tr>
<th height="40" align="right" scope="row">证书号:</th>
<td>
<input type="text" name="textfield9" value=<%=crvo.getCrNumber() %> readOnly="true" >
</td>
</tr>
<tr>
<th height="40" align="right" scope="row">证书日期:</th>
<td><input type="text" name="textfield20" value=<%=crvo.getCrDate() %> readOnly="true" >
</td>
</tr>
<tr>
<th height="40" align="left" scope="row"> </th>
<td><input type="button" value="返回" onclick="return GoBack()" style="width: 70px; height: 25px"></td>
<inp>
</tr>
</table>
<p align="center"> </p>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -