📄 ijob.asp
字号:
<title>查看简历</title>
<!--#include file=inc/conn.asp-->
<!--#include file=../../inc/checkadmin.asp-->
<!--#include file=../../../ajaxLIB/ajaxLIB.asp-->
<%
AJAXshowLoader()
AJAXshowSweetTitles2()
%>
<%
CurrentPage=replaceBadchar(request.QueryString("page"))
if CurrentPage="" then
CurrentPage=1
else if not IsNumeric(CurrentPage) then
CurrentPage=1
else if int(CurrentPage)<=0 then
CurrentPage=1
else
CurrentPage=replacebadchar(request("page"))
end if
end if
end if
set rs=server.CreateObject("adodb.recordset")
Sqlstr="select * from sys_data_J_Ijob order by id desc"
rs.open sqlstr,conn,1,1
strFileName="Ijob.asp"
maxperpage=10
%>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
function alertreadme(str,url){
{if(confirm(str)){
location.href=url;
return true;
}return false;}
}
//-->
</SCRIPT>
<link href="css/my.css" rel="stylesheet" type="text/css">
<div id="job" style="filter:blendTrans(duration=1); position:absolute;visibility:hidden; width:774px; z-index:-1; left: 3px; top: 10px; height: 121px;">
<table width="580" height="100" border="0" align="center" cellpadding="0" cellspacing="0" class="TABLEBORDER">
<tr>
<td valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="1">
<tr align="center">
<th colspan="4">查看应聘者</th>
</tr>
<tr align="center" bgcolor="#DEDBEF">
<td width="28%" height="30"><font color="000000">应聘岗位名称</font></td>
<td width="32%"><font color="000000">姓名</font></td>
<td width="26%"><font color="000000">应聘时间</font></td>
<td width="14%"><font color="000000">操作</font></td>
</tr>
<%
if not rs.eof then
rs.pagesize=MaxPerpage
totalput=rs.recordcount
Rs.absolutepage=CurrentPage
for i=1 to rs.pagesize
if rs.eof then exit for
%>
<tr onmouseover="this.style.backgroundColor='#F3F3FA';this.style.color='red'" onmouseout="this.style.backgroundColor='';this.style.color=''" align="center">
<td height="30"><a href="IjobView.asp?id=<%=rs("id")%>"><%=rs("works")%></a></td>
<td><a href="ijobView.asp?id=<%=rs("id")%>"><%=rs("xm")%></a></td>
<td><%=rs("time")%></td>
<td><a href=# onClick=alertreadme('确定删除这条吗?','IjobDel.asp?id=<%=Rs("id")%>')>删除</a></td>
</tr>
<%
rs.movenext
next
else
%>
<tr><td align="center" colspan="4" height="50" bgcolor="#FFFFFF"><font color="#FF0000"><strong>还没有应聘简历</strong></font></td></tr>
<%end if%>
</table></td>
</tr>
<tr>
<td height="30" align="center" class="showPage"><%call showpage(strFileName,totalput,MaxPerPage,flase,true,"份简历",CurrentPage)%></td>
</tr>
</table>
</div>
<!---------------------------------end-div:mobanlist------------------------>
<script language=javascript>
AJAXfade(1,'job')
</script>
<%
AJAXcloseLoader()
%>
<%
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -