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

📄 hire.asp

📁 嘉缘人才6.0精简 ,很好用的人才系统
💻 ASP
字号:
<!--#include file="../conn/conn.asp"-->
<!--#include file="../inc/Commoncode.asp"-->
<!--#include file="../inc/CommonFunction.asp"-->
<%
hire_id=trim(request("hireid"))
If hire_id="" Or IsNumeric(hire_id)=False Then
	response.write "参数不足或参数错误!"
	response.end
End If
set rst=server.createobject("ADODB.Recordset")
sql="select * from job_c_hire where hire_id="&hire_id
rst.open sql,conn,1,1
if rst.eof then
  rst.close
  set rst=nothing
  response.write "此公司不存在,或已被管理员删除!"
  response.end
else
	hire_id=rst("hire_id")
	hire_announcedate=rst("hire_announcedate")
	rst.close
	set rst=nothing
end if
set rsuc=conn.execute("select * from JOB_Channel where ChannelID=2")
	UseCreateHTML=rsuc("UseCreateHTML")
set rsuc=nothing
if  CreateHTML=1 and UseCreateHTML<>0 then
	response.redirect FormatLink(hire_announcedate,2,3,hire_id,0)
	Response.End()
else
Response.Write(CreateHTMLReplace(HireContentHtml(hire_id)))
end if
%>

⌨️ 快捷键说明

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