📄 company_hirelist.asp
字号:
end if
rs.movenext
loop
rs.close
%>
</SELECT>
<a href="company_deptlist.asp" style="CURSOR: hand"><img src="../images/adddept.gif" width="108" height="22" border="0" align="absmiddle" class="button" /></a></td>
</tr>
<tr>
<td align="right"><font
color="#ff6600">*</font>岗位类别:</td>
<td><table cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td valign="top" width="211" height="23"><table cellspacing="2" cellpadding="4" width="100%"
bgcolor="#dbdbdb" border="0">
<tbody>
<tr>
<td bgcolor="#FFFFFF"><table cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td align="center" bgcolor="#999900" height="2"></td>
</tr>
<tr>
<td align="center" bgcolor="#FF6600" height="20"><font color="#ffffff"><b>请选择岗位类别</b></font></td>
</tr>
<tr>
<td bgcolor="#CCCCCC" height="1"></td>
</tr>
<tr>
<td align="center"><div style="MARGIN-top:10px">
<select name="mainposition" size="1" id="mainposition" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体" onchange="GetPosition(this.options[this.selectedIndex].value)">
<option value="" selected="selected">岗位大类</option>
<%set rs=server.createobject("ADODB.Recordset")
sql="select position_id,position_name from job_position where position_fid=0 order by position_id"
rs.open sql,conn,1,1
do while not rs.eof
response.write"<OPTION value="&rs("position_id")&">"&rs("position_name")&"</option>"
rs.movenext
loop
rs.close
%>
</select>
</div>
<br />
<span id="load300"></span><span id="cposition">
<select name="subposition" size="5" multiple="multiple" id="subposition" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体">
<option value="">岗位小类</option>
</select>
</span> </td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table></td>
<td width="67" align="center"><input name="button1" type="button" class="inputa3" value="添 加" onclick="JavaScript:AddItem('subposition', 'tempposition','','mainposition')" />
<br />
<br />
<input name="button12" type="button" class="inputa3" value="删 除" onclick="JavaScript:DelItem('tempposition')" />
</td>
<td valign="top" align="middle" width="243"><table cellspacing="2" cellpadding="4" width="100%"
align="center" bgcolor="#dbdbdb" border="0">
<tbody>
<tr>
<td bgcolor="#f7f7f7"><table cellspacing="0" cellpadding="0" width="100%"
border="0">
<tbody>
<tr>
<td align="center" bgcolor="#999900" height="2"></td>
</tr>
<tr>
<td align="center" bgcolor="#FF6600" height="20"><font color="#ffffff"><b>您已经选择的工作岗位(最多三个)</b></font></td>
</tr>
<tr>
<td bgcolor="#CCCCCC" height="1"></td>
</tr>
<tr>
<td><div style="MARGIN-top:10px">
<SELECT name=tempposition size=7 multiple id="tempposition" style="WIDTH: 230px">
<%
if hire_position<>"" and not isnull(hire_position) then
if hire_position="0000" then
response.write "<OPTION value='0000'>工作岗位不限</option>"
else
pstring=split(hire_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&""
rs.open sql,conn,1,1
if not rs.eof then
mainposition_name=rs("position_name")
end if
rs.close
if mainposition_name<>"" then
response.write "<OPTION value="&position&">"&mainposition_name&"-不限</option>"
end if
case "1"
mainposition=trim(mystring(0))
subposition=trim(mystring(1))
sql="select position_name from job_position where position_id="&mainposition&""
rs.open sql,conn,1,1
if not rs.eof then
mainposition_name=rs("position_name")
end if
rs.close
sql="select position_name from job_position where position_id="&subposition&""
rs.open sql,conn,1,1
if not rs.eof then
subposition_name=rs("position_name")
end if
rs.close
if mainposition_name<>"" and subposition_name<>"" then
response.write "<OPTION value="&position&">"&mainposition_name&"-"&subposition_name&"</option>"
end if
end select
end if
next
end if
end if
%>
</SELECT>
</div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td colspan="3" height="12"><font color="#000000">
<input name="position" type="hidden" id="position" />
</font><font
color="#ff6600">(选中的工作岗位必须添加到右边的列表框中。)</font></td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td align="right"><font
color="#ff6600">*</font>工作地区:</td>
<td><table cellspacing="0" cellpadding="0" width="100%" border="0">
<tbody>
<tr>
<td valign="top" width="211" height="23"><table cellspacing="2" cellpadding="4" width="100%"
bgcolor="#dbdbdb" border="0">
<tbody>
<tr>
<td bgcolor="#f7f7f7"><table cellspacing="0" cellpadding="0" width="100%"
border="0">
<tbody>
<tr>
<td align="center" bgcolor="#999900" height="2"></td>
</tr>
<tr>
<td align="center" bgcolor="#FF6600" height="20"><font color="#ffffff"><b>请选择工作地区</b></font></td>
</tr>
<tr>
<td bgcolor="#CCCCCC" height="1"></td>
</tr>
<tr>
<td align="center" height="80"><div style="MARGIN-top:10px">
<select name="province" size="1" id="select3" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体" onchange="GetCapital(this.options[this.selectedIndex].value)">
<option value="" selected="selected">省份</option>
<%
sql="select id,province_city from job_provinceandcity where fid=0 order by id"
rs.open sql,conn,1,1
do while not rs.eof
response.write"<OPTION value="&rs("id")&">"&rs("province_city")&"</option>"
rs.movenext
loop
rs.close
%>
</select>
<br />
<span id="load100"></span> <span id="ccapital">
<select name="capital" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体" onchange="GetCity(this.options[this.selectedIndex].value)">
<option value="" selected="selected">地级市</option>
</select>
</span><br />
<span id="load200"></span> <span id="ccity">
<select name="city" size="5" multiple="multiple" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体">
<option value="">县级地区</option>
</select>
</span> </div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table></td>
<td width="67" align="center"><input name="button13" type="button" class="inputa3" value="添 加" onclick="JavaScript:AddItem('city','tempworkadd','province','capital')" />
<br />
<br />
<input name="button122" type="button" class="inputa3" value="删 除" onclick="JavaScript:DelItem('tempworkadd')" /></td>
<td valign="top" align="middle" width="243"><table cellspacing="2" cellpadding="4" width="100%"
align="center" bgcolor="#dbdbdb" border="0">
<tbody>
<tr>
<td bgcolor="#FFFFFF"><table cellspacing="0" cellpadding="0" width="100%"
border="0">
<tbody>
<tr>
<td align="center" bgcolor="#999900" height="2"></td>
</tr>
<tr>
<td align="center" bgcolor="#FF6600" height="20"><font color="#ffffff"><b>您已经选择的工作地区(最多三个)</b></font></td>
</tr>
<tr>
<td bgcolor="#CCCCCC" height="1"></td>
</tr>
<tr>
<td align="center"><div style="MARGIN-top:10px">
<SELECT name=tempworkadd size=9 multiple id="tempworkadd" style="WIDTH: 230px">
<%
if hire_workadd<>"" and not isnull(hire_workadd) then
if hire_workadd="0000" then
response.write "<OPTION value='0000'>工作地区不限</option>"
else
wstring=split(hire_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&""
rs.open sql,conn,1,1
if not rs.eof then
province_name=rs("province_city")
end if
rs.close
if province_name<>"" then
response.write "<OPTION value="&workadd&">"&province_name&"</option>"
end if
case "1"
province=trim(mystring(0))
capital=trim(mystring(1))
sql="select province_city from job_provinceandcity where id="&province&""
rs.open sql,conn,1,1
if not rs.eof then
province_name=rs("province_city")
end if
rs.close
sql="select province_city from job_provinceandcity where id="&capital&""
rs.open sql,conn,1,1
if not rs.eof then
capital_name=rs("province_city")
end if
rs.close
if province_name<>"" and capital_name<>"" then
response.write "<OPTION value="&workadd&">"&province_name&"-"&capital_name&"</option>"
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&""
rs.open sql,conn,1,1
if not rs.eof then
province_name=rs("province_city")
end if
rs.close
sql="select province_city from job_provinceandcity where id="&capital&""
rs.open sql,conn,1,1
if not rs.eof then
capital_name=rs("province_city")
end if
rs.close
sql="select province_city from job_provinceandcity where id="&city&""
rs.open sql,conn,1,1
if not rs.eof then
city_name=rs("province_city")
end if
rs.close
if province_name<>"" and capital_name<>"" and city_name<>"" then
response.write "<OPTION value="&workadd&">"&province_name&"-"&capital_name&"-"&city_name&"</option>"
end if
end select
end if
next
end if
end if
%>
</SELECT>
</div></td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td colspan="3" height="12"><font color="#000000">
<input name="workadd" type="hidden" id="workadd" />
</font><font
color="#ff6600">(选中的工作地区必须添加到右边的列表框中。)</font></td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td align="right"><font color="#ff6600">*</font><font
color="#000000">招聘人数:</font></td>
<td><font color="#000000">
<INPUT name=number id="number" size=6 maxLength=5 value="<%=hire_number%>">
人</font></td>
</tr>
<tr>
<td align="right">薪资待遇:</td>
<td><font color="#000000">
<input type="text" name="pay" id="pay" size="6" maxlength="5" value="<%=hire_pay%>" />
</font>元/月 (注:0表示为面议,建议输入具体数目) </td>
</tr>
<tr>
<td align="right"><font color="#ff6600">*</font>截止日期:</td>
<td><font color="#FF6600"><span class="forumRowHighlight">
<input type="text" name="foundate" value="<%=hire_enddate%>" id="foundate" size="10" maxlength="10" readonly onclick="fPopUpCalendarDlg(foundate);return false" />
<img src="../images/calendar_bnt.gif" style="cursor:pointer;" align="absmiddle" onclick="fPopUpCalendarDlg(foundate);return false" width="34" height="21" /></span> <font color="#FF6600"></font>*</font></td>
</tr>
<tr>
<td align="right"><font color="#ff6600">*</font>具体要求:</td>
<td><textarea class="FieldText" id="introduce" style="FONT-SIZE: 12px" name="introduce" rows="10" cols="70"><%=ChangeStrbox(hire_introduce)%></textarea>
言简意赅地阐述职位具体要求。</td>
</tr>
</table>
<span class="maintit">对应聘者要求</span>
<table width="100%" border="0" cellspacing="1" cellpadding="2">
<tr>
<td width="18%" align="right"> 人才类型:</td>
<td width="82%"><INPUT id=usergroup type=radio value=0 name=usergroup <%if hire_usergroup="" or isnull(hire_usergroup) or hire_usergroup=0 then response.write "checked" end if%>>
普通
<INPUT id=usergroup type=radio value=1 name=usergroup <%if hire_usergroup=1 then response.write "checked" end if%>>
毕业生
<INPUT id=usergroup type=radio value=2 name=usergroup <%if hire_usergroup=2 then response.write "checked" end if%>>
高级人才</td>
</tr>
<tr>
<td align="right">专业要求:</td>
<td><table cellspacing="0" cellpadding="0" width="100%"
align="right" border="0">
<tbody>
<tr>
<td valign="top" width="211" height="23"><table cellspacing="2" cellpadding="4" width="100%"
bgcolor="#dbdbdb" border="0">
<tbody>
<tr>
<td bgcolor="#FFFFFF"><table cellspacing="0" cellpadding="0" width="100%"
border="0">
<tbody>
<tr>
<td align="center" bgcolor="#999900" height="2"></td>
</tr>
<tr>
<td align="center" bgcolor="#FF6600" height="20"><font color="#ffffff"><b>请选择专业要求</b></font></td>
</tr>
<tr>
<td bgcolor="#CCCCCC" height="1"></td>
</tr>
<tr>
<td align="center" height="80"><div style="MARGIN-top:10px">
<select name="mainprofession" size="1" id="mainprofession" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体" onchange="GetProfession(this.options[this.selectedIndex].value)">
<option value="0000" selected="selected">专业不限</option>
<%
sql="select profession_id,profession_name from job_profession where profession_fid=0 order by profession_id"
rs.open sql,conn,1,1
do while not rs.eof
response.write"<OPTION value="&rs("profession_id")&">"&rs("profession_name")&"</option>"
rs.movenext
loop
rs.close
%>
</select>
</div>
<span id="load400"></span><span id="cprofession">
<select name="subprofession" size="6" multiple="multiple" id="subprofession" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体">
<option value="0000">不限</option>
</select>
</span> </td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table></td>
<td width="67" align="center"><input name="button132" type="button" class="inputa3" value="添 加" onclick="JavaScript:AddItem('subprofession','tempprofession','','mainprofession')" />
<br />
<br />
<input name="button1222" type="button" class="inputa3" value="删 除" onclick="JavaScript:DelItem('tempprofession')" /></td>
<td valign="top" align="middle" width="243"><table cellspacing="2" cellpadding="4" width="100%"
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -