📄 jobs.asp
字号:
<%@ Language=VBScript%>
<%
Response.Buffer=true
Response.Expires=0
%>
<!-- #include file="../dsn.asp" -->
<%
classcode=Request.QueryString("classcode")
keyno=Request.QueryString("keyno")
conno=Request.QueryString("conno")
if conno="" then conno="1"
set cn = Server.CreateObject("ADODB.Connection")
cn.Open(mycnstr)
set rs = Server.CreateObject("ADODB.Recordset")
set rs2 = Server.CreateObject("ADODB.Recordset")
mymenu="job"
%>
<!-- #include file="begin.asp" -->
<TABLE WIDTH="778" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR VALIGN="TOP">
<TD WIDTH="180">
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="0" CELLPADDING="0">
<TR>
<TD><IMG SRC="../images/title_inside.gif" WIDTH="180" HEIGHT="32"></TD>
</TR>
</TABLE><BR>
<TABLE WIDTH="100%" BORDER="0" CELLSPACING="1" CELLPADDING="0">
<TR BGCOLOR="#cccccc">
<TD COLSPAN=2 BGCOLOR="#cccccc"><IMG SRC="../images/spacer.gif" WIDTH="1" HEIGHT="1"></TD>
</TR>
<%
sqltext="select keyno,title from engage where state='1' order by sortnum asc"
rs.open sqltext,cn,1,1
do while not rs.EOF
%>
<TR>
<TD CLASS="bodytext" ALIGN="RIGHT">
<a href="#job<%=rs(0)%>" class="anews2"><%=trim(rs(1))%></TD>
</TR>
<TR>
<TD BGCOLOR="#cccccc"><IMG SRC="../images/spacer.gif" WIDTH="1" HEIGHT="1"></TD>
</TR>
<%
i=i+1
rs.MoveNext
loop
%>
</TABLE>
</TD>
<TD WIDTH="1" BGCOLOR="#9C9A9C"><IMG SRC="../images/spacer.gif" WIDTH="1" HEIGHT="1"></TD>
<%
rs.Close
%>
<TD height=360>
<P><IMG SRC="../images/title_career.jpg" WIDTH="597" HEIGHT="57"></P>
<TABLE WIDTH="95%" BORDER="0" CELLSPACING="0" CELLPADDING="0" ALIGN="CENTER">
<TR>
<TD>
<%
sqltext="select * from engage where state='1' order by sortnum asc"
rs.open sqltext,cn,1,1
do while not rs.EOF
%>
<a name="job<%=rs("keyno")%>"></a>
<table width="550" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="font1" height="1" colspan="2" background="images/point_line_h.gif"></td>
</tr>
<tr>
<td class="font1" height="10" colspan="2"></td>
</tr>
<tr>
<td class="font5ecb" height="36" colspan="2"><b><%=trim(rs("title"))%></b></td>
</tr>
<tr>
<td class="font1" height="10" width="230" valign="top">
岗位名称:<%=trim(rs("title"))%><br>
招聘部门:<%=trim(rs("dept"))%><br>
工作地点:<%=trim(rs("city"))%><br>
有效时限:<%=trim(rs("yxq"))%><br>
联系信箱:<a class="anews" href="mailto:<%=trim(rs("email"))%>"><%=trim(rs("email"))%></a></td>
<td class="font1" height="10" valign="top">岗位要求:<br>
<%=checkstr(trim(rs("content")))%>
</td>
</tr>
<tr>
<td class="font1" height="36" colspan="2">
<a href="../admin/enguser_register.asp?flag=2&engageno=<%=rs("keyno")%>" target=_blank>
[我要应聘]</a></td>
</tr>
<tr>
<td class="font1" height="15" colspan="2"></td>
</tr>
</table>
<%
rs.MoveNext
loop
rs.Close
%>
</TD>
</TR>
</TABLE>
<P> </P>
</TD>
</TR>
</TABLE>
<!-- #include file="end.asp" -->
<!-- #include file="func.asp" -->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -