📄 index.asp
字号:
<html>
<head>
<!--#include file="conn.asp"-->
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>林林网络招聘系统</title>
<style type="text/css">
<!--
.style1 {font-size: 16px}
.style2 {font-size: 14px}
.style3 {color: #FF0000}
.style4 {font-size: 14px; color: #FF0000; }
.style5 {font-size: 12px}
body {
background-color: #9DE1AB;
}
.style7 {font-size: 14px; font-weight: bold; }
-->
</style>
</head>
<body>
<table width="500" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="center"><span class="style7">林林网络招聘系统</span><br>
<br>
</div></td>
</tr>
</table>
<table width="600" border="2" align="center" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2" scope="col"><div align="center"><a href="login.asp" class="style1">用户登陆</a></div> <div align="center"></div></td>
</tr>
<tr>
<td width="50%" bgcolor="#99FFFF" scope="col"><div align="center"><br>
<a href="user/reg.htm" class="style1"> 个人用户注册</a><br>
<br></div></td>
<td bgcolor="#FFFFCC" scope="col"><div align="center"><br>
<a href="com/reg.htm" class="style1"> 公司用户注册</a><br>
<br></div></td>
</tr>
</table>
<table border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><span class="style2">最新工作</span> <span class="style2">[<a href="comclass.asp">更多...</a>]</span> <a href="search/searchcom.htm" class="style4">搜索公司/单位</a></td>
</tr>
<tr>
<td><%
dim rs1,sql1
set rs1=server.createobject("adodb.recordset")
sql1 = "select top 20 * from cominfo order by comid desc"
rs1.open sql1,conn,1,1
%>
<TABLE width="600" BORDER="1" cellpadding="0" cellspacing="0">
<TR>
<TH><span class="style5">公司/单位名字</span></TH>
<TH><span class="style5">招聘职务</span></TH>
<TH><span class="style5"> 登记日期</span></TH>
</TR>
<%
Do While Not RS1.EOF
Response.Write "<TR><TD><div align='center'><span class='style2'><A HREF=/job/search/viewcom.asp?user="&rs1("com")&" target='_blank'>" & RS1("comname") & "</a></TD>"
Response.Write "<TD><div align='center'><span class='style2'>" & rs1("want1") & "</TD>"
Response.Write "<TD><div align='center'><span class='style2'>" & rs1("time") & "</TD>"
rs1.MoveNext
Loop
'关闭数据库连接并释放对象
rs1.Close
Set rs1 = Nothing
'Conn.Close
'Set Conn = Nothing
%>
</TABLE>
</td>
</tr>
<tr>
<td align="right"> </td>
</tr>
</table>
<table border="2" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><span class="style2">最新人才</span> <span class="style2">[<a href="userclass.asp">更多...</a>]</span> <a href="search/searchuser.htm" class="style2 style3">搜索应聘者</a></td>
</tr>
<tr>
<td>
<%
set rs=server.createobject("adodb.recordset")
sql = "select top 20 * from userinfo order by userid desc"
rs.open sql,conn,1,1
%>
<TABLE width="600" BORDER="1" cellpadding="0" cellspacing="0">
<TR>
<TH><span class="style5">应聘者名字</span></TH>
<TH><span class="style5">性别</span></TH>
<TH><span class="style5">学历</span></TH>
<TH><span class="style5">求职意向</span></TH>
<TH><span class="style5">登记日期</span></TH>
</TR>
<%
Do While Not RS.EOF
Response.Write "<TR><TD><div align='center'><span class='style2'><A HREF=/job/search/viewuser.asp?user="&rs("user")&" target='_blank'>" & RS("username") & "</a></TD>"
Response.Write "<TD><div align='center'><span class='style2'>" & rs("usersex") & "</TD>"
Response.Write "<TD><div align='center'><span class='style2'>" & rs("userlevel") & "</TD>"
Response.Write "<TD><div align='center'><span class='style2'>" & rs("job1") & "</TD>"
Response.Write "<TD><div align='center'><span class='style2'>" & rs("time") & "</TD>"
rs.MoveNext
Loop
'关闭数据库连接并释放对象
rs.Close
Set rs = Nothing
Conn.Close
Set Conn = Nothing
%>
</TABLE>
</td>
</tr>
<tr>
<td align="right"> </td>
</tr>
</table>
<table width="600" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="50%"><div align="center"><br>
<br>
</div></td>
<td><div align="center"><br>
<br>
</div></td>
</tr>
<tr>
<td bgcolor="#9DE1AB"><div align="center"><br>
<span class="style2"><a href="search/viewalluser.asp">查看所有应聘者</a></span><br>
</div></td>
<td bgcolor="#9DE1AB"><div align="center"><br>
<a href="search/viewallcom.asp" class="style2">查看所有公司/单位</a></div></td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -