📄 hire_modi.asp
字号:
</TBODY>
</TABLE></TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
<TR>
<TD colSpan=3 height=12><FONT color=#000000>
<input name="workadd" type="hidden" id="workadd2">
</FONT></TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
<TR >
<TD height=25 class="amrow"><FONT color=#ff6600>*</FONT><FONT
color=#000000>招聘人数:</FONT></TD>
<TD class="amrow"><FONT color=#000000>
<INPUT name=number class=Fieldtext id="number2" size=6 maxLength=5 value="<%=rst("hire_number")%>">
人</FONT> </TD>
</TR>
<TR >
<TD height=25 class="huiby"> 薪资待遇:</TD>
<TD height=25 class="huiby"><FONT color=#000000>
<INPUT name=pay class=Fieldtext id="pay2" size=6 maxLength=5 value="<%=rst("hire_pay")%>">
</FONT>元/月 (注:0表示为面议,建议输入具体数目) </TD>
</TR>
<TR >
<TD height=25 class="amrow"><FONT color=#ff6600>*</FONT>截止日期: </TD>
<TD class="amrow"><input name="funddate" type="text" size="10" id=funddate value="<%=rst("hire_enddate")%>"><img src="../images/calendar_bnt.gif" style="cursor:pointer;" align="absmiddle" onClick="fPopUpCalendarDlg(funddate);return false" WIDTH="34" HEIGHT="21"></span> </TD>
</TR>
<TR >
<TD class="huiby"><FONT color=#ff6600>*</FONT>具体要求:</TD>
<TD height=25 class="huiby"><FONT
color=#333333>
<textarea class=FieldText id=textarea style="FONT-SIZE: 12px" name=introduce rows=10 cols=80><%=ChangeStrbox(rst("hire_introduce"))%></textarea>
(言简意赅地阐述职位具体要求。</FONT><FONT
color=#333333>)</FONT></TD>
</TR>
<TR >
<TD height=25 colspan="2" class="huiby"> 任职要求:<FONT
color=#333333>(以便求职者能在设定的查询条件中更好地搜索到贵企业的职位!)</FONT></TD>
</TR>
<TR >
<TD height=25 colspan="2">
<TABLE cellSpacing=2 cellPadding=0 width="100%" border=0 align="left">
<TBODY>
<tr>
<td height=25 class="amrow"> 人才类型:</td>
<td class="amrow">
<INPUT name=usergroup type=radio class="checkbox" id=usergroup value=0 <%if rst("hire_usergroup")="" or isnull(rst("hire_usergroup")) or rst("hire_usergroup")=0 then response.write "checked" end if%>>
普通
<INPUT name=usergroup type=radio class="checkbox" id=usergroup value=1 <%if rst("hire_usergroup")=1 then response.write "checked" end if%>>
毕业生
<INPUT name=usergroup type=radio class="checkbox" id=usergroup value=2 <%if rst("hire_usergroup")=2 then response.write "checked" end if%>>
高级人才</td>
</tr>
<tr>
<td colspan="2"> <TABLE cellSpacing=0 cellPadding=0 width="100%"
align=right border=0>
<TBODY>
<TR>
<TD vAlign=top width=200 height=25> <TABLE cellSpacing=1 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD>
<TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD height=20 align=middle bgcolor="#8a7b60" class="title"><FONT
color=#ffffff>请选择专业要求</FONT></TD>
</TR>
<TR>
<TD height=1 bgcolor="#8a7b60"></TD>
</TR>
<TR>
<TD align=middle height=80><select name="mainprofession" size="1" id="select10" style="FONT-SIZE: 12px; WIDTH: 180px; FONT-FAMILY: 宋体" onChange=GetProfession(this.options[this.selectedIndex].value)>
<option value="0000" 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> <BR> <BR> <span id="load400"></span><span id="cprofession">
<select name=subprofession size="5" multiple id="select11" 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=48> <P style="MARGIN-RIGHT: 8px"><A href="JavaScript:AddItem('subprofession', 'tempprofession','','mainprofession')"><IMG src="../images/add.gif" width="56" height="22" border=0></A><BR>
<BR>
<A href="JavaScript:DelItem('tempprofession')"><IMG src="../images/del.gif" width="56" height="22" border=0> </A></P></TD>
<TD vAlign=top align=middle width=230>
<TABLE cellSpacing=1 cellPadding=0 width="100%" align=center border=0>
<TBODY>
<TR>
<TD> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
<TBODY>
<TR>
<TD height=20 align=middle class="title"><FONT
color=#ffffff>您已经选择的专业(最多三个)</FONT> </TD>
</TR>
<TR>
<TD height=1 bgcolor="#8a7b60"></TD>
</TR>
<TR>
<TD> <SELECT name=tempprofession size=7 multiple id="select12" style="WIDTH: 230px" >
<%
hire_profession=rst("hire_profession")
if hire_profession<>"" and not isnull(hire_profession) then
if hire_profession="0000" then
response.write "<OPTION value='0000'>专业要求不限</option>"
else
pstring=split(hire_profession,",")
for i=0 to ubound(pstring)
mainprofession_name=""
subprofession_name=""
profession=trim(pstring(i))
if profession<>"" then
mystring=split(profession,"*")
length=ubound(mystring)
select case length
case "0"
mainprofession=trim(mystring(0))
sql="select profession_name from job_profession where profession_id="&mainprofession&""
rs.open sql,conn,1,1
if not rs.eof then
mainprofession_name=rs("profession_name")
end if
rs.close
if mainprofession_name<>"" then
response.write "<OPTION value="&profession&">"&mainprofession_name&"-不限</option>"
end if
case "1"
mainprofession=trim(mystring(0))
subprofession=trim(mystring(1))
sql="select profession_name from job_profession where profession_id="&mainprofession&""
rs.open sql,conn,1,1
if not rs.eof then
mainprofession_name=rs("profession_name")
end if
rs.close
sql="select profession_name from job_profession where profession_id="&subprofession&""
rs.open sql,conn,1,1
if not rs.eof then
subprofession_name=rs("profession_name")
end if
rs.close
if mainprofession_name<>"" and subprofession_name<>"" then
response.write "<OPTION value="&profession&">"&mainprofession_name&"-"&subprofession_name&"</option>"
end if
end select
end if
next
end if
end if
%>
</SELECT> </TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
<TR>
<TD height=12 colSpan=3 class="amrow"><FONT color=#000000>
<input name="profession" type="hidden" id="profession">
</FONT></TD>
</TR>
</TBODY>
</TABLE></td>
</tr>
<TR>
<TD width=195 height=25 class="huiby"> 学 历: </TD>
<TD width="749" class="huiby"><select name="edu">
<option value="0" selected>不限</option>
<%
sql="select edu_id,edu_name from job_edu order by edu_id desc"
rs.open sql,conn,1,1
do while not rs.eof
if rst("hire_edu")=rs("edu_id") then
response.write"<OPTION value="&rs("edu_id")&" selected>"&rs("edu_name")&"</option>"
else
response.write"<OPTION value="&rs("edu_id")&">"&rs("edu_name")&"</option>"
end if
rs.movenext
loop
rs.close
set rs=nothing
%>
</select>
以上</TD>
</TR>
<!--+++++++++++++++++++++++++++++++++++工作经验要求++++++++++++++++++++++++++++++++++++++-->
<TR>
<TD height=25 class="amrow"> 工作经验:</TD>
<TD class="amrow"><select name=experience size=1 id="select16">
<option value=-100 selected>不限</option>
<option value=-1 <%if rst("hire_edu")=-1 then response.write "selected" end if%>>在读学生</option>
<option value=0 <%if rst("hire_edu")=0 then response.write "selected" end if%>>毕业生</option>
<%
for i=1 to 10
if rst("hire_edu")=i then
response.write "<option value='"&i&"' selected>"&i&"年</option>"
else
response.write "<option value='"&i&"'>"&i&"年</option>"
end if
next
%>
</select>
以上 </TD>
</TR>
<!--++++++++++++++++++++++++++++++++++++性别要求+++++++++++++++++++++++++++++++++++++++++-->
<TR>
<TD height=25 class="huiby"> 性 别: </TD>
<TD class="huiby"><SELECT name=sex size=1>
<OPTION value=0 selected>不限</OPTION>
<OPTION value=1 <%if rst("hire_sex")=1 then response.write "selected" end if%>>男性</OPTION>
<OPTION value=2 <%if rst("hire_sex")=2 then response.write "selected" end if%>>女性</OPTION>
</SELECT> </TD>
</TR>
<TR>
<TD height=25 class="amrow"> 年 龄: </TD>
<TD class="amrow"><SELECT name=age1 size=1 id="select17">
<OPTION value=0 selected>不限</OPTION>
<%
for i=16 to 60
if rst("hire_age1")=i then
response.write "<option value='"&i&"' selected>"&i&"</option>"
else
response.write "<option value='"&i&"'>"&i&"</option>"
end if
next
%>
</SELECT>
至
<SELECT name=age2 size=1 id="select18">
<OPTION value=0 selected>不限</OPTION>
<%
for i=16 to 60
if rst("hire_age2")=i then
response.write "<option value='"&i&"' selected>"&i&"</option>"
else
response.write "<option value='"&i&"'>"&i&"</option>"
end if
next
%>
</SELECT></TD>
</TR>
</TBODY>
</TABLE></TD>
</TR>
<TR >
<TD height=25 align=left valign="middle" class="huiby"><FONT color=#ff6600>*</FONT>公司名称: </TD>
<TD align=left class="huiby"><input name="comname" type="text" id="comname3" value="<%=rst("hire_comname")%>" size="38" maxlength="50"> </TD>
</TR>
<TR >
<TD height=25 align=left valign="middle" class="amrow"><font color="#ff6600"> </font>通讯地址:</TD>
<TD align=left class="amrow"><input name="address" type="text" size="38" maxlength="50" value="<%=rst("hire_address")%>"> </TD>
</TR>
<TR >
<TD height=25 valign="middle" class="huiby"> 邮 编: </TD>
<TD align=left class="huiby"> <INPUT name=post id="post2" size=6 maxLength=6 value="<%=rst("hire_post")%>"> </TD>
</TR>
<TR >
<TD height=25 vAlign=middle class="amrow"><FONT color=#ff6600>*</FONT>联 系 人:</TD>
<TD align=left class="amrow"> <INPUT name=contact id="contact2" size=28 maxLength=25 value="<%=rst("hire_contact")%>"> </TD>
</TR>
<TR >
<TD height=25 vAlign=middle class="huiby"><FONT color=#ff6600>*</FONT>联系电话:</TD>
<TD align=left class="huiby"> <input name="tel" type="text" id="tel2" size="38" maxlength="100" value="<%=rst("hire_tel")%>"> </TD>
</TR>
<TR >
<TD height=25 align=left valign="middle" class="amrow"> 传 真:</TD>
<TD align=left class="amrow"> <input name="fax" type="text" id="fax2" size="38" maxlength="100" value="<%=rst("hire_fax")%>"> </TD>
</TR>
<TR >
<TD height=25 align=left vAlign=middle class="huiby"><FONT color=#ff6600>*</FONT>电子邮件:</TD>
<TD align=left vAlign=top class="huiby"> <INPUT maxLength=100 size=38 name=email value="<%=rst("hire_email")%>"> </TD>
</TR>
<%
rst.close
set rst=nothing
conn.close
set conn=nothing
%>
<TR >
<TD height=25 colspan="2" align="center" class="amrow"> <input name="submitdd" type="submit" class=Anbut1 value=" 修 改 ">
<input name="reset" type="reset" class=Anbut1 value=" 还 原 "> </TD>
</TR>
</TBODY>
</form>
</TABLE>
</body>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -