📄 web_job_update.asp
字号:
</tr>
<tr>
<td height="25" align="right" bgcolor="#fff7f0">部门:</td>
<td height="25" bgcolor="#fff7f0"> <select name="deptid" id="deptid" style="width:100px">
<option value="0">-请选择-</option>
<%
SQL = "Select Ncid,DeptName From [pH_Company_Dept] Where Comid='"&Comid&"'"
Set Rs = Conn.Execute(SQL)
While Not Rs.Eof
%>
<option value="<%= Rs(0) %>" <% If DeptId = Rs(0) Then Response.write "Selected" %>><%= Rs(1) %></option>
<%
Rs.Movenext
Wend
Rs.Close
%>
</select> <a href="Com_Dept.asp"><u>新增企业部门</u></a></td>
</tr>
<tr>
<td height="25" align="right"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 人数:</td>
<td height="25"><input name="number" type="text" style="width:100px" maxlength="4" value="<%= Tmp(4,0) %>">
人 ( 默认为0,表示若干人 )</td>
</tr>
<tr>
<td height="25" align="right" bgcolor="#fff7f0"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 薪资待遇:</td>
<td height="25" bgcolor="#fff7f0"><input name="deal" type="text" style="width:100px" maxlength="4" value="<%= Tmp(3,0) %>">
元/月 ( 默认为0,表示待遇面议 )</td>
</tr>
<tr>
<td height="25" align="right"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 截止日期:</td>
<td height="25"><input name="end_year" type="text" size="4" maxlength="4" value="<%= End_Year %>">
年
<select name=end_month id="end_month">
<%for i=1 to 12%>
<option <%if i=End_month then%>selected<%end if%> value="<%=i%>"><%=i%></option>
<%next%>
</select>
月
<select name=end_day id="end_day">
<%for i=1 to 31%>
<option <%if i=End_day then%>selected<%end if%> value="<%=i%>"><%=i%></option>
<%next%>
</select>
日</td>
</tr>
<tr>
<td height="25" align="right" bgcolor="#fff7f0"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 工作地区:</td>
<td height="25" bgcolor="#fff7f0">先选择上排的省区,再在下排选择相应的城市,然后按添加<br>
如果想要删出选好的工作地点,请先选中该项,然后按移除</td>
</tr>
<tr>
<td height="25" align="right"> </td>
<td height="25"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="40%"><FONT
color=#333333>选择工作地点</FONT></td>
<td width="15%"> </td>
<td width="45%"><FONT
color=#333333>已经选择的工作地点</FONT></td>
</tr>
<tr>
<td><select style="width:180px" name=slt_workplacearea>
</select> <select name=slt_workplacecity size="1" style="width:180px">
</select></td>
<td><table width="98%" border="0" cellspacing="0" class="text01">
<tr>
<td height="25" align="center"><input type="button" name="Submit22" value="添加>>" onclick="AddItemToList('slt_workplacearea','slt_workplacecity','slt_selectedplaces',1, 2, '-')"></td>
</tr>
<tr>
<td height="25" align="center"><input type="button" name="Submit32" value="<<移除" onclick="DeleteListSelectedItem('slt_selectedplaces', 0)"></td>
</tr>
</table></td>
<td><SELECT name=slt_selectedplaces size=3 multiple id=select8 style="width:200px">
<option value="<%= Tmp(5,0)&"-"&Tmp(6,0) %>" selected><%= Tmp(5,0)&Tmp(6,0) %></option>
</SELECT></td>
</tr>
</table></td>
</tr>
<tr>
<td height="25" align="right" bgcolor="#fff7f0"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 具体要求:</td>
<td height="25" bgcolor="#fff7f0">简单阐述职位具体要求/待遇 ;</td>
</tr>
<tr>
<td height="25" align="right"> </td>
<td height="25"><textarea name="require" cols="50" rows="6" ><%= Require %></textarea></td>
</tr>
<tr>
<td height="25" align="right" bgcolor="#fff7f0"><STRONG><FONT
color=#ff6600>*</FONT></STRONG> 任职要求:</td>
<td height="25" bgcolor="#fff7f0">请填写职位要求,以便求职者能在设定查询条件时更容易搜索到贵企业的职位
;</td>
</tr>
<tr>
<td height="25" align="right"> </td>
<td height="25"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="80" height="25" align="right">学 历:</td>
<td height="25"> <select name="edus" id="edus" style="width:70px;">
<option value="0" <% If Edus = 0 Then Response.write "Selected" %>>-不限-</option>
<option value="10" <% If Edus = 10 Then Response.write "Selected" %>>小学</option>
<option value="20" <% If Edus = 20 Then Response.write "Selected" %>>初中</option>
<option value="30" <% If Edus = 30 Then Response.write "Selected" %>>高中</option>
<option value="40" <% If Edus = 40 Then Response.write "Selected" %>>中专</option>
<option value="50" <% If Edus = 50 Then Response.write "Selected" %>>专科</option>
<option value="60" <% If Edus = 60 Then Response.write "Selected" %>>本科</option>
<option value="70" <% If Edus = 70 Then Response.write "Selected" %>>硕士</option>
<option value="80" <% If Edus = 80 Then Response.write "Selected" %>>博士</option>
<option value="90" <% If Edus = 90 Then Response.write "Selected" %>>博士后</option>
</select> </td>
</tr>
<tr>
<td width="80" height="25" align="right">工作年限:</td>
<td height="25"> <select name="works" id="works" style="width:70px;">
<option value="0" <% If Works = 0 Then Response.write "Selected" %>>-不限-</option>
<option value="1" <% If Works = 1 Then Response.write "Selected" %>>一年以上</option>
<option value="2" <% If Works = 2 Then Response.write "Selected" %>>二年以上</option>
<option value="3" <% If Works = 3 Then Response.write "Selected" %>>三年以上</option>
<option value="4" <% If Works = 4 Then Response.write "Selected" %>>四年以上</option>
<option value="5" <% If Works = 5 Then Response.write "Selected" %>>五年以上</option>
<option value="10" <% If Works = 10 Then Response.write "Selected" %>>十年以上</option>
<option value="20" <% If Works = 20 Then Response.write "Selected" %>>二十年以上</option>
<option value="30" <% If Works = 30 Then Response.write "Selected" %>>三十年以上</option>
<option value="50" <% If Works = 50 Then Response.write "Selected" %>>退休人员</option>
</select> </td>
</tr>
<tr>
<td width="80" height="25" align="right">性 别:</td>
<td height="25"><select name="sex" size="1" style="width:70px;">
<option value="2" <% If Sex = 2 Then Response.write "Selected" %>>-不限-</option>
<option value="1" <% If Sex = 1 Then Response.write "Selected" %>>男</option>
<option value="0" <% If Sex = 0 Then Response.write "Selected" %>>女</option>
</select></td>
</tr>
<tr>
<td width="80" height="25" align="right">年 龄:</td>
<td height="25"> <select name="min_age" size="1" id="min_age" style="width:70px;">
<option value="0">-不限-</option>
<%
For i=18 to 60
%>
<option value="<%=i%>" <% If i=Tmp(17,0) Then %>selected<% End if %>><%= i %></option>
<%
Next
%>
</select>
至
<select name="max_age" size="1" id="max_age" style="width:70px;">
<option value="0">-不限-</option>
<%
For i=18 to 60
%>
<option value="<%=i%>" <% If i=Max_Age Then %>Selected<% End if %>><%= i %></option>
<%
Next
%>
</select></td>
</tr>
<tr>
<td width="80" height="25" align="right">现所在地:</td>
<td height="25">
<!--#include file="../Include/Class_Locus4.asp" -->
</td>
</tr>
</table></td>
</tr>
</table>
<table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="2"></td>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -