📄 publishjobs.asp
字号:
<!--#include file=../conn.asp-->
<!--#include file=cookies.asp-->
<!--#include file=top.asp-->
<%
dim sql
dim rs
dim username
dim comid,i
username=request.cookies("ijob")("username")
comid=request.cookies("ijob")("comid")
set rs=server.createobject("adodb.recordset")
sql="select * from [bumen] where comid='"&comid&"' order by comid desc"
rs.open sql,conn,1,1
if rs.eof or rs.bof then
response.write "<br>"+"<li><font color=""#ff0000"">错误,你还没有添加部门!</font>"
response.write "<br>"+"<li>正在进入添加部门页面....请稍等!!!!!"
response.write "<meta http-equiv=refresh content=""3;URL=AdminDept.asp"">"
response.end
end if
%>
<meta http-equiv="Content-Language" content="zh-cn">
<link rel="stylesheet" type="text/css" href="../1.css">
<title>发布职位第一步</title>
<body topmargin="0" leftmargin="0">
<script language="javaScript">
<!--
function mOvr(src,clrOver){
if (!src.contains(event.fromElement)) {
src.style.cursor = 'hand';
src.bgColor = clrOver;
}
}
function mOut(src,clrIn) {
if (!src.contains(event.toElement)) {
src.style.cursor = 'default';
src.bgColor = clrIn;
}
}
//-->
</script>
<div align="center">
<center>
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="770" height="236">
<tr>
<td width="147" height="236" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
<tr>
<td width="100%"><!--#include file=left.asp--></td>
</tr>
</table>
</td>
<td width="27" height="236" valign="top"> </td>
<td width="580" height="236" valign="top">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
<form action="PublishJobs1.asp" name ="fabu" method="POST">
<tr>
<td width="101%" colspan="6"><font color="#FF0000">发布职位第一步</font><%if request.cookies("ijob")("ijobvip")<>1 then%>(注意:试用会员发布的职位总数不超过5条!)<%end if%></td>
</tr>
<tr>
<td width="101%" height="25" colspan="6">
<p align="left"><font color="#3EC5E1">■</font>选择一个部门发布职位→ →</td>
</tr>
<tr>
<td width="10%" height="25" align="center" bgcolor="#E7E7E7" style="border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC"><p align="center">
<font color="#CC0000">序号</font></td>
<td width="10%" height="25" align="center" bgcolor="#E7E7E7" style="border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC"><font color="#CC0000">部门名称</font></td>
<td width="20%" height="25" align="center" bgcolor="#E7E7E7" style="border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC">
<p align="center"><font color="#CC0000">该部门负责人</font></td>
<td width="20%" height="25" align="center" bgcolor="#E7E7E7" style="border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC">
<p align="center"><font color="#CC0000">联系email</font></td>
<td width="20%" height="25" align="center" bgcolor="#E7E7E7" style="border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC">
<p align="center"><font color="#CC0000">应聘人拨打电话</font></td>
<td height="25" align="center" bgcolor="#E7E7E7" style="border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC">
<p align="center"><font color="#CC0000">选择</font></td>
</tr>
<%
dim k
k=1
do while not rs.eof%>
<tr bgcolor="#f7f7f7" onmouseout="mOut(this,'#f7f7f7');" onmouseover="mOvr(this,'#E5F6CC');">
<td width="10%" height="25" align="center" style="border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC"><b><%=k%><input type="hidden" name="id" size="7" value="<%=rs("id")%>"></b></td>
<td width="10%" height="25" align="center" style="border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC"><a href="AdminDeptedit.asp?id=<%=rs("id")%>"><%=rs("bmmc")%></a><input type="hidden" name="bmmc" size="7" value="<%=rs("bmmc")%>"></td>
<td width="20%" height="25" align="center" style="border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC"><font color="#808080"><%=rs("fzr")%></font><input type="hidden" name="fzr" size="7" value="<%=rs("fzr")%>"></td>
<td width="20%" height="25" align="center" style="border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC"><font color="#808080"><%=rs("fzrmail")%></font><input type="hidden" name="fzrmail" size="8" value="<%=rs("fzrmail")%>"></td>
<td width="20%" height="25" align="center" style="border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC"><font color="#808080"><%=rs("dianhua")%></font><input type="hidden" name="dianhua" size="8" value="<%=rs("dianhua")%>"></td>
<td height="25" align="center" style="border-top-style: solid; border-top-width: 1; border-bottom-style: solid; border-bottom-width: 1" bordercolor="#CCCCCC">
<p align="center">
<font color="#808080">
<input type="radio" value="<%=rs("id")%>" checked name="r"></font></td>
</tr>
<%
k=k+1
rs.movenext
loop
rs.close
set rs=nothing
%>
<tr>
<td width="101%" colspan="6">
<p align="center">
<br>
<%
if request.cookies("ijob")("ijobvip")=1 then
response.write "<input border=""0"" src=""../img/PublishJobs1.gif"" name=""I1"" type=""image""></td>"
else
dim rctj,sql1,rs1
set rs1=server.createobject("adodb.recordset")
sql1="select id from [jobs] where comid='"&comid&"'"
rs1.open sql1,conn,1,1
rctj=rs1.Recordcount
if rctj<5 then
response.write "<font color=#ff0000><img border=""0"" src=""../img/lock.gif"">你发布的职位总数已经超过了试用会员的最大发布数(试用会员发布的职位总数不超过5条信息),请升级为VIP会员来获取完全的服务!</font>"
end if
end if
%>
</tr>
</form>
</table>
</td>
<td width="16" height="236" valign="top"> </td>
</tr>
</table>
</center>
</div>
<!--#include file=copyright.asp-->
<%
call closedb
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -