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

📄 xxxx.asp

📁 人事管理系统 人事管理系统 人事管理系统 人事管理系统
💻 ASP
字号:
<!--#include file="inc/Conndb.asp"-->
<!--#include file="inc/Ubbcode.asp"-->
<!--#include file="inc/Function.asp"-->
<%

dim ID,rs,FoundErr,ErrMsg
ID=trim(request("ID"))
FoundErr=False
if ID="" then 
	response.Redirect("fyxs.asp")
end if

sql="select * from rsxt where ID=" & ID & ""
Set rs= Server.CreateObject("ADODB.Recordset")
rs.open sql,conn,1,1
if FoundErr=True then
	call WriteErrMsg()
else
%>
<HTML><HEAD><TITLE>员工信息详细查询</TITLE>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<link href="css/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
body {
	background-color: #F5F5F5;
}
.h25 {
	font-size: 12px;
	line-height: 25px;
	color: #999999;
}
.style2 {font-size: 20px}
-->
</style>
</head>
<body>
<div align="center"></div>
<br><br><br><br>
<table width="600" height="240" border="0" align="center">
  <tr>
    <td width="300"><table width="300" height="80" border="0">
      <tr>
        <td>工号:<%=rs("gh")%></td>
      </tr>
      <tr>
        <td>姓名:<%=rs("name")%></td>
      </tr>
    </table></td>
    <td width="300">照片: <img src="<%=rs("zp")%>" width="70" height="80"></td>
  </tr>
  <tr>
    <td width="300"><table width="300" height="80" border="0">
      <tr>
        <td>性别:<%=rs("xb")%></td>
      </tr>
      <tr>
        <td>身份证号:<%=rs("sfzh")%></td>
      </tr>
    </table></td>
    <td width="300"><table width="300" height="80" border="0">
      <tr>
        <td>学历:<%=rs("xl")%> </td>
      </tr>
      <tr>
        <td>证书编号:<%=rs("zsh")%></td>
      </tr>
    </table></td>
  </tr>  <tr>
    <td width="300"><table width="300" height="80" border="0">
      <tr>
        <td>入职时间:<%=rs("rzsj")%></td>
      </tr>
      <tr>
        <td>职位:<%=rs("zw")%> </td>
      </tr>
    </table></td>
    <td width="300"><table width="300" height="80" border="0">
      <tr>
        <td>部门: <%=rs("bm")%> </td>
      </tr>
      <tr>
        <td>政治面目:<%=rs("zzmm")%></td>
      </tr>
    </table></td>
  </tr>
</table>
<br>
<br><table width="600" border="0" align="center">
  <tr>
    <td><div align="center">自存书</div></td>
  </tr>
  <tr>
    <td><%=rs("zjx")%></td>
  </tr>
</table>
<div align="center"><img src="<%=rs("zsf")%>" width="600" height="800">
</div>
</body>
</html>
<%
end if
rs.close
set rs=nothing
call CloseConn()
%>

⌨️ 快捷键说明

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