⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 inuser.asp

📁 ASP的招聘管理
💻 ASP
字号:
<!--#include file="conn.asp"-->
<!--#include file="../../show_page.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>个人用户管理</title>
<link href="../../../style/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE2 {color: #000000}
.STYLE3 {color: #FFFFFF}
-->
</style>
<script language="javascript"> 
function openScript(url, width, height){
	var width=700;
	var height=490;
	var Win = window.open(url,"openScript",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=no,status=yes' );
}
</script>
</head>

<body>
<%
const MAXPERPAGE=20
                 dim totalput
                 dim currentpage
set rs=server.CreateObject("adodb.recordset")
sql="select * from zp_inuser order by id desc"
rs.open sql,conn,1,1
if rs.eof or rs.bof then
response.write"没有数据!"
else
'id=rs("id")
'session("id")=id

%>
<table width="100%" border="0" cellpadding="4" cellspacing="1" bgcolor="#DEE8F1" class="table_admin">
  <tr>
    <td colspan="6" height="30" ><a href='../../../job/add.asp' class="14red">【管理人员填写简历】</a></td>
  </tr> 
  <tr>
    <td width="10%" bgcolor="#93B1D2"><div align="center" class="STYLE3">搜集</div></td>
    <td width="10%" bgcolor="#93B1D2"><div align="center" class="STYLE3">姓名</div></td>
	<td width="20%" bgcolor="#93B1D2"><div align="center" class="STYLE3">应聘职位</div></td>
	<td width="20%" bgcolor="#93B1D2"><div align="center" class="STYLE3">发布时间</div></td>
    <td width="40%" bgcolor="#93B1D2"><span class="STYLE3">操作</span></td>
  </tr>
<%
 totalput=rs.recordcount
                    if request("page")="" then
                        currentpage=1
                    else
                        currentpage=request("page")
                    end if
					
                    if currentpage<1 then
                        currentpage=1
                    end if
					
                    if (currentpage-1)*maxperpage>=totalput then
                        if (totalput mod maxperpage)=0 then
                            currentpage=totalput \ maxperpage
                        else
                            currentpage=totalput \ maxperpage +1
                        end if
                     end if
			 
                     if currentpage=1 then
                         show_product
                         showpage totalput,MAXPERPAGE,"stock_list.asp"
                     else
                         rs.move(currentpage-1)*MAXPERPAGE
                         show_product
                         showpage totalput,MAXPERPAGE,"stock_list.asp"
                     end if
                     sub show_product
					   dim i
                          i=0	
do while not rs.eof 
%>
  <tr>
    <td bgcolor="#FFFFFF"><div align="center">
	<%
	from=rs("user_from_name")
	if from<>"" then%>
	【<%=rs("user_from_name")%>】
	<%
	else
	response.write"【求职者】"
	end if 
	%></div></td>
    <td bgcolor="#FFFFFF"><div align="center"><%=rs("user_name")%></div></td>
	<td align="left" bgcolor="#FFFFFF"><div align="left"><%=left(rs("user_zhiwei"),10)%></div></td>
	<td bgcolor="#FFFFFF"><div align="left"><%=rs("user_time")%></div></td>
	<td bgcolor="#FFFFFF">
	<!--<a href='../../../job/edit.asp?id=<%=rs("id")%>'>修改简历</a> | -->
	<a href='../../../job/user_show.asp?action=del&id=<%=rs("id")%>'>预览简历</a> | 

	<a href="JavaScript:openScript('email.asp?user_email=<%=rs("user_email")%>&user_name=<%=rs("user_name")%>',500,400)">发送邮件</a> | 
	<a onClick="{if(confirm('是否删除【<%=rs("user_name")%>】在本站的所有数据?')){return true;}return false;}" href='user_del.asp?action=del&id=<%=rs("id")%>'>删除</a></td>
  </tr>
  <%
  i=i+1
   if i>=MAXPERPAGE then exit do
  rs.movenext
  loop
  end sub
  end if
  rs.close
  set rs=nothing
  conn.close
  set conn=nothing
  %>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -