📄 cnpreview.asp
字号:
<!--#include file="../conn/conn.asp" -->
<!--#include file="../inc/Commoncode.asp"-->
<!--#include file="checkpmember.asp" -->
<%sUploadDir=UpFilesPath("Person")
rid=cint(trim(request("rid")))
set rs=server.createobject("ADODB.Recordset")
sql="select * from job_p_resume where resume_id="&rid&""
rs.open sql,conn,1,1
if rs.eof then
response.write "<script language=javascript>alert('错误:简历不存在!');window.close();</script>"
response.end
else
resume_pmember=rs("resume_pmember")%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>预览简历-个人求职管理中心</title>
<link href="../css/css.css" rel="stylesheet" type="text/css">
<script src="../inc/main.js" type="text/javascript"></script><Script type="text/javascript">
window.onload=function(){
fResizeImg(120,120, 'resume');
}
</script><style type="text/css">
<!--
.resumediv01 {margin:10px; padding:10px;width:770px; height:auto; border:1px #0000A0 solid; line-height:22px;}
.resumediv01 ul{margin:0; float:left; width:50%;}
.resumediv01 li{float:left; width:100%; text-align:left; height:auto;}
-->
</style>
</head>
<body>
<center>
<div class="resumediv01" id=resume>
<ul style="border-bottom:2px #0000A0 solid; height:50px">
<li><font color=#ff0000>简历编号:<%=rs("resume_id")%></font></li>
<li><font color=#3d362b>更新日期:<%=year(rs("resume_announcedate"))&"-"&month(rs("resume_announcedate"))&"-"&day(rs("resume_announcedate"))%></font></li>
</ul>
<ul style="border-bottom:2px #0000A0 solid; height:50px; font-size:18px; font-weight:bold"><%=rs("resume_name")%>的个人简历</ul>
<div style="padding:0;text-align:left; height:auto;"><span style=" width:80px; height:22px;padding:4px 10px 0 10px;font-size:14px; font-weight:bold; color:#0000A0">基本资料</span>
<table width="98%" border="0" align="center" cellpadding="4" cellspacing="0" style="BORDER:1px solid;">
<tr>
<td width="58%"><table cellspacing=1 cellpadding=2 width=600 align=center
border=0>
<tbody>
<tr>
<td width=100 align="right">姓 名:</td>
<td width=200><%=rs("resume_name")%></td>
<td width=100 align="right">性 别:</td>
<td width=200>
<%select case rs("resume_sex")
case 1 response.write "男"
case 2 response.write "女"
end select%> </td>
</tr>
<tr>
<td align="right">出生日期:</td>
<td><%=rs("resume_birth")%></td>
<td align="right">民 族:</td>
<td>
<%set rs1=server.CreateObject("adodb.recordset")
If rs("resume_nation")<>"" Then
sql="select nation_name from job_nation where nation_id="&rs("resume_nation")
rs1.open sql,conn,1,1
nation_name=rs1("nation_name")
rs1.close%>
<%=nation_name%>
<%End If%> </td>
</tr>
<tr>
<td align="right">婚姻状况:</td>
<td>
<%If rs("resume_marriage")<>"" Then
sql="select marriage_name from JOB_marriage where marriage_id="&rs("resume_marriage")
rs1.open sql,conn,1,1
marriage_name=rs1("marriage_name")
rs1.close%>
<%=marriage_name%>
<%End If%> </td>
<td align="right">身 高:</td>
<td>
<%if rs("resume_height")<>"" and not isnull(rs("resume_height")) and rs("resume_height")<>0 then
response.write rs("resume_height")
end if%>
CM </td>
</tr>
<tr>
<td align="right">政治面貌:</td>
<td>
<%If rs("resume_polity")<>"" Then
sql="select polity_name from JOB_polity where polity_id="&rs("resume_polity")
rs1.open sql,conn,1,1
polity_name=rs1("polity_name")
rs1.close%>
<%=polity_name%>
<%End If%> </td>
<td align="right">体 重:</td>
<td>
<%if rs("resume_weight")<>"" and not isnull(rs("resume_weight")) and rs("resume_weight")<>0 then
response.write rs("resume_weight")
end if%>
KG </td>
</tr>
<tr>
<td align="right">户口所在地:</td>
<td>
<%
If rs("resume_hukouprovinceid")<>"" Then
sql="select * from JOB_provinceandcity where id="&rs("resume_hukouprovinceid")
rs1.open sql,conn,1,1
resume_hukouprovince=rs1("province_city")
rs1.close
%>
<%=resume_hukouprovince%>
<%
End If
If rs("resume_hukoucapitalid")<>"" Then
sql="select * from JOB_provinceandcity where id="&rs("resume_hukoucapitalid")
rs1.open sql,conn,1,1
resume_hukoucapital=rs1("province_city")
rs1.close
%>
<%=resume_hukoucapital%>
<%
End If
If rs("resume_hukoucityid")<>"" Then
sql="select * from JOB_provinceandcity where id="&rs("resume_hukoucityid")
rs1.open sql,conn,1,1
resume_hukoucity=rs1("province_city")
rs1.close
%>
<%=resume_hukoucity%>
<%End If%> </td>
<td align="right">目前所在地:</td>
<td><%
If rs("resume_provinceid")<>"" Then
sql="select * from JOB_provinceandcity where id="&rs("resume_provinceid")
rs1.open sql,conn,1,1
resume_province=rs1("province_city")
rs1.close
%>
<%=resume_province%>
<%
End If
If rs("resume_capitalid")<>"" Then
sql="select * from JOB_provinceandcity where id="&rs("resume_capitalid")
rs1.open sql,conn,1,1
resume_capital=rs1("province_city")
rs1.close
%>
<%=resume_capital%>
<%
End IF
If rs("resume_cityid")<>"" Then
sql="select * from JOB_provinceandcity where id="&rs("resume_cityid")
rs1.open sql,conn,1,1
resume_city=rs1("province_city")
rs1.close
%>
<%=resume_city%>
<%End If%></td>
</tr>
<tr>
<td align="right">毕业学校:</td>
<td><%=rs("resume_school")%></td>
<td align="right">毕业时间:</td>
<td><%=rs("resume_graduate")%></td>
</tr>
<tr>
<td align="right">最高学历:</td>
<td>
<%
If rs("resume_edu")<>"" Then
sql="select * from JOB_edu where edu_id="&rs("resume_edu")
rs1.open sql,conn,1,1
edu_name=rs1("edu_name")
rs1.close
%>
<%=edu_name%>
<%End If%> </td>
<td align="right">职称:</td>
<td><%=rs("resume_zhicheng")%></td>
</tr>
<tr>
<td align="right">特长概括:</td>
<td colspan="3"><font color=#8C511D><%=rs("resume_sumup")%></font></td>
</tr>
</tbody>
</table></td>
<td width="42%">
<%Set rst= Server.CreateObject("ADODB.RecordSet")
sql="select * from job_member where member_login='"&resume_pmember&"' and member_typeid=1"
rst.open sql,conn,1,1
if not rst.eof then
if rst("member_logo")<>"nophoto.gif" then%> <img src="<%=InstallDir&FR_UPFILES_DIR%>/Person/<%=rst("member_logo")%>" border=0>
<%else%><img src="<%=InstallDir&FR_UPFILES_DIR%>/Person/nophoto.gif">
<%end if
end if
rst.close%> </td>
</tr>
</table>
<span style=" width:80px; height:22px;padding:4px 10px 0 10px;font-size:14px; font-weight:bold; color:#0000A0">自我评价</span>
<table cellspacing=1 cellpadding=2 width=98% align=center border=0 style="BORDER:1px solid;">
<tr>
<td style="PADDING-LEFT: 13px; PADDING-BOTTOM: 6px; PADDING-TOP: 6px"><font color=#00007f><%=rs("resume_appraise")%> </font></td>
</tr>
</table>
<%sql="select * from job_p_education where education_resumeid="&rid&""
rst.open sql,conn,1,1
if not rst.eof then%>
<span style=" width:80px; height:22px;padding:4px 10px 0 10px;font-size:14px; font-weight:bold; color:#0000A0">教 育</span>
<table width=98% border=0 align="center" cellpadding=2 cellspacing=1 style="BORDER: 1px solid;">
<tr>
<td width="15%" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>学历</STRONG></FONT></td>
<td width="33%" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>学校名称</STRONG></FONT></td>
<td width="26%" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>专业</STRONG></FONT></td>
<td width="26%" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>时间范围</STRONG></FONT></td>
</tr>
<%
set rs1=server.CreateObject("adodb.recordset")
for i=1 to rst.recordcount
response.write "<TR>"
sql="select * from JOB_edu where edu_id="&rst("education_edu")
rs1.open sql,conn,1,1
edu_name=rs1("edu_name")
rs1.close
response.write "<TD>"&edu_name&"</TD>"
response.write "<TD>"&rst("education_school")&"</TD>"
sql="select profession_name from JOB_profession where profession_id="&rst("education_subprofession")
rs1.open sql,conn,1,1
profession_name=rs1("profession_name")
rs1.close
response.write "<TD>"&profession_name&"</TD>"
response.write "<TD>"&rst("education_startyear")&"年"&rst("education_startmonth")&"月 - "
if rst("education_endyear")=0 and rst("education_endmonth")=0 then
response.write "至今"
else
response.write ""&rst("education_endyear")&"年"&rst("education_endmonth")&"月"
end if
response.write "</TD>"
response.write "</TR>"
rst.movenext
next
%>
</table>
<%end if
rst.close%>
<%sql="select * from job_p_training where train_resumeid="&rid&""
rst.open sql,conn,1,1
if not rst.eof then%>
<span style=" width:80px; height:22px;padding:4px 10px 0 10px;font-size:14px; font-weight:bold; color:#0000A0">培 训</span>
<table cellspacing=1 cellpadding=2 width=98% align=center border=0 style="BORDER: 1px solid;">
<tr>
<td width="190" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>培训机构</STRONG></FONT></td>
<td width="205" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>培训课程</STRONG></FONT></td>
<td width="207" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>时间范围</STRONG></FONT></td>
</tr>
<%
for i=1 to rst.recordcount
response.write "<TR>"
response.write "<TD>"&rst("train_train")&"</TD>"
response.write "<TD>"&rst("train_course")&"</TD>"
response.write "<TD>"&rst("train_startyear")&"年"&rst("train_startmonth")&"月 - "
if rst("train_endyear")=0 and rst("train_endmonth")=0 then
response.write "至今"
else
response.write ""&rst("train_endyear")&"年"&rst("train_endmonth")&"月"
end if
response.write "</TD>"
response.write "</TR>"
rst.movenext
next
%>
</table>
<%end if
rst.close
%>
<%
sql="select * from job_p_lang where lang_resumeid="&rid&""
rst.open sql,conn,1,1
if not rst.eof then
%>
<span style=" width:80px; height:22px;padding:4px 10px 0 10px;font-size:14px; font-weight:bold; color:#0000A0">语言能力</span>
<table width=98% border=0 align="center" cellpadding=2 cellspacing=1 style="BORDER: 1px solid;">
<tr>
<td width="50%" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>外语语种</STRONG></FONT></td>
<td width="50%" bgcolor="#E9F4FA"><FONT color=#00007f><STRONG>掌握程度</STRONG></FONT></td>
</tr>
<%
for i=1 to rst.recordcount
response.write "<TR>"
sql="select * from job_foreignlanguage where foreign_id="&rst("lang_name")
rs1.open sql,conn,1,1
foreign_name=rs1("foreign_name")
rs1.close
response.write "<TD>"&foreign_name&"</TD>"
sql="select * from job_foreigndegree where degree_id="&rst("lang_master")
rs1.open sql,conn,1,1
degree_name=rs1("degree_name")
rs1.close
response.write "<TD>"°ree_name&"</TD>"
response.write "</TR>"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -