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

📄 cnresume.asp

📁 嘉缘人才6.0精简 ,很好用的人才系统
💻 ASP
📖 第 1 页 / 共 2 页
字号:
	 response.write "</TR>"
	 rst.movenext
	next
	%>
</table>
<%end if
rst.close
sql="select * from job_p_work where work_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>
<%for i=1 to rst.recordcount%>
<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' colSpan=4 bgcolor='#E9F4FA'><FONT color=#00007f><STRONG><%=rst("work_startyear")%>年<%=rst("work_startmonth")%>月 - <%if rst("work_endyear")=0 and rst("work_endmonth")=0 then%>至今<%else%><%=rst("work_endyear")%>年<%=rst("work_endmonth")%>月<%end if%>:<%=rst("work_comname")%> </STRONG></FONT></TD></TR>
<TR>
<TD width=12% align="right">公司性质:</TD>
<%sql="select * from job_ecoclass where ecoclass_id="&rst("work_ecoclass")
rs1.open sql,conn,1,1
ecoclass_name=rs1("ecoclass_name")
rs1.close%>
<TD width=38%><%=ecoclass_name%></TD>
<TD width=12% align="right">所属行业:</TD>
<%
sql="select * from job_trade where trade_id="&rst("work_trade")
rs1.open sql,conn,1,1
trade_name=rs1("trade_name")
rs1.close%><TD width=38%><%=trade_name%></TD>
</TR>
<TR>
<TD align="right">所在部门:</TD>
<TD><%=rst("work_dept")%></TD>
<TD align='right'>担任职务:</TD>
<TD><%=rst("work_place")%></TD>
</TR>
<TR> <TD align='right'>工作描述:</TD><TD colSpan=3 ><%=rst("work_introduce")%></TD></TR>
<TR> <TD align='right'>离职原因:</TD><TD colSpan=3><%=rst("work_leftreason")%></TD></TR></TABLE>
<%rst.movenext
next
%>
<%end if
rst.close%>
<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="12%" align="right">职位性质:</td>
      <td width="38%">
        <%select case rs("resume_jobtype")
			   case 1
			    response.write "全职"
			   case 2
			    response.write "兼职"
			   case 3
			    response.write "全职、兼职均可"
			  end select
			  %></td>
      <td width="12%" align="right">行业类别:</td>
      <td width="38%"><%resume_trade=rs("resume_trade")
				'response.Write(rs("resume_trade"))
				if resume_trade<>"" and not isnull(resume_trade) then
				 if resume_trade="0000" then
				  response.write "<OPTION value='0000'>不限</option>"
				 else
				  tstring=split(resume_trade,",")
				  for i=0 to ubound(tstring)
				   trade_name=""
				   trade=trim(tstring(i))
				   if trade<>"" then
					sql="select trade_name from job_trade where trade_id="&trade&""
                    rst.open sql,conn,1,1
					if not rst.eof then
					 trade_name=rst("trade_name")
					end if
					rst.close
					if trade_name<>"" then
					 response.write trade_name&"&nbsp;&nbsp;"
					end if
				   end if
				  next
				 end if 
				end if
			  %></td>
    </tr>
    <tr>
      <td width="102" align="right">工作岗位:</td>
      <td><%resume_position=rs("resume_position")
			   if resume_position<>"" and not isnull(resume_position) then
				if resume_position="0000" then
				 response.write "不限"
				else
				 pstring=split(resume_position,",")
				 for i=0 to ubound(pstring)
				  mainposition_name=""
				  subposition_name=""
				  position=trim(pstring(i))
				  if position<>"" then
				   mystring=split(position,"*")
				   length=ubound(mystring)
				   select case length
					 case "0"
					  mainposition=trim(mystring(0))
					  sql="select position_name from job_position where position_id="&mainposition&""
                      rst.open sql,conn,1,1
					  if not rst.eof then
						mainposition_name=rst("position_name")
					  end if
					  rst.close
					  if mainposition_name<>"" then
					   response.write mainposition_name&"&nbsp;&nbsp;"
					  end if
					 case "1"
					  subposition=trim(mystring(1))
                      sql="select position_name from job_position where position_id="&subposition&""
                      rst.open sql,conn,1,1
					  if not rst.eof then
					   subposition_name=rst("position_name")
					  end if
					  rst.close
					  if subposition_name<>"" then
					   response.write subposition_name&"&nbsp;&nbsp;"
					  end if
					 end select
					end if
				   next
				  end if
				 end if
			    %></td>
      <td align="right">工作地区:</td>
      <td>
        <%resume_workadd=rs("resume_workadd")
			   if resume_workadd<>"" and not isnull(resume_workadd) then
				if resume_workadd="0000" then
				 response.write "<OPTION value='0000'>不限</option>"
				else
				 wstring=split(resume_workadd,",")
				 for i=0 to ubound(wstring)
				 province_name=""
				 capital_name=""
				 city_name=""
				 workadd=trim(wstring(i))
				 if workadd<>"" then
				  mystring=split(workadd,"*")
				  length=ubound(mystring)
				  select case length
				   case "0"
					province=trim(mystring(0))
					sql="select province_city from job_provinceandcity where id="&province&""
                    rst.open sql,conn,1,1
					if not rst.eof then
					 province_name=rst("province_city")
					end if
					rst.close
					if province_name<>"" then
					 response.write province_name&"&nbsp;&nbsp;"
					end if
				   case "1"
					province=trim(mystring(0))
					capital=trim(mystring(1))
					sql="select province_city from job_provinceandcity where id="&province&""
                    rst.open sql,conn,1,1
					if not rst.eof then
					 province_name=rst("province_city")
					end if
					rst.close
                    sql="select province_city from job_provinceandcity where id="&capital&""
                    rst.open sql,conn,1,1
					if not rst.eof then
					 capital_name=rst("province_city")
					end if
					rst.close
					if province_name<>"" and capital_name<>"" then
					 response.write province_name&"-"&capital_name&"&nbsp;&nbsp;"
					end if
				   case "2"
					province=trim(mystring(0))
					capital=trim(mystring(1))
					city=trim(mystring(2))
					sql="select province_city from job_provinceandcity where id="&province&""
                    rst.open sql,conn,1,1
					if not rst.eof then
					 province_name=rst("province_city")
					end if
					rst.close
                    sql="select province_city from job_provinceandcity where id="&capital&""
                    rst.open sql,conn,1,1
					if not rst.eof then
					 capital_name=rst("province_city")
					end if
					rst.close
					sql="select province_city from job_provinceandcity where id="&city&""
                    rst.open sql,conn,1,1
					if not rst.eof then
					 city_name=rst("province_city")
					end if
					rst.close
					if province_name<>"" and capital_name<>"" and city_name<>"" then
					 response.write province_name&capital_name&city_name&"&nbsp;&nbsp;"
					end if
				   end select
				  end if
				 next
			    end if
			   end if
			  %>
      </td>
    </tr>
    <tr>
      <td align="right">月薪要求<font color="#00007f">:</font></td>
      <td><%if rs("resume_pay")<>"" and not isnull(rs("resume_pay")) then
			  if rs("resume_pay")=0 then
			   response.write "面议"
			  else
			   response.write rs("resume_pay")&"&nbsp;RMB"
			  end if
			  if rs("resume_stay")=1 then
			   response.write "&nbsp;&nbsp;&nbsp;要求提供住宿"
			  end if
			  end if
			  %></td>
      <td align="right">到岗时间:</td>
      <td><%select case rs("resume_workdate")
			   case 0
			    response.write "随时"
			   case 7
			    response.write "1周以内"
			   case 14
			    response.write "2周以内"
			   case 30
			    response.write "1个月内"
			   case 60
			    response.write "1~3个月"
			   case 90
			    response.write "3个月以后"
			  end select%></td>
    </tr>
    <tr>
      <td align="right">其他要求<font color=#00007f>:</font></td>
      <td colspan=3><font color=#00007f><%=rs("resume_request")%></font></td>
    </tr>
</table>
<%
sql="select * from job_p_picture where picture_pmember='"&resume_pmember&"' and picture_type=2 and picture_status=1"
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;">
  <tbody>
    <tr>
      <td style="PADDING-LEFT: 13px; PADDING-BOTTOM: 6px; PADDING-TOP: 6px"><%
			  for i=1 to rst.recordcount
			  response.write "<img src='"&InstallDir&FR_UPFILES_DIR&"/Person/"&rst("picture_filename")&"'>证书"&i&"&nbsp;&nbsp;"
			  rst.movenext
			  next
			  rst.close
			  set rst=nothing
			  %></td>
    </tr>
  </tbody>
</table>
<%end if%>
<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;">
  <tbody>
    <tr>
      <td width=12% align="right">联系电话:</td>
      <td width=38%><%=rs("resume_tel")%></td>
      <td width=12% align="right">聊天号码:</td>
      <td width=38%><%=rs("resume_chat")%></td>
    </tr>
    <tr>
      <td align="right">电子邮件:</td>
      <td ><a href="mailto:<%=rs("resume_email")%>" target="_blank"><%=rs("resume_email")%></a></td>
      <td align="right">个人主页:</td>
      <td><a href="<%=rs("resume_url")%>" target="_blank"><%=rs("resume_url")%></a></td>
    </tr>
    <tr>
      <td align="right">联系地址:</td>
      <td><%=rs("resume_address")%></td>
      <td align="right">邮&nbsp;&nbsp;&nbsp;&nbsp;编:</td>
      <td><%=rs("resume_post")%></td>
    </tr>
  </tbody>
</table>
<table cellspacing=0 cellpadding=0 width=98% align=center border=0>
 <tr>
      <td align="center" style="PADDING-LEFT: 13px; PADDING-BOTTOM: 16px; PADDING-TOP: 16px"><input name="Submit3" type="button" class="inputs" value="打印简历" onClick="javascript:window.print();">
        
        <input name="Submit22" type="button" class="inputs" value="关闭窗口" onClick="javascript:window.close();">
      </td>
    </tr>
</table>
<%
end if
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
</div>
</div>
</center>
</body>

⌨️ 快捷键说明

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