📄 seluser33mh.asp
字号:
<!--#include file="odbc_connection.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>显示求职信息</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
.style1 {
font-size: 12px;
font-weight: bold;
color: #333333;
}
.style4 {font-size: 12px; color: #6600FF; }
.style8 {color: #666666; font-size: 12px; }
-->
</style>
<link href="css/css2.css" rel="stylesheet" type="text/css"></head>
<body>
<% dim rs,sql
mhname=trim(request("mhname"))
sql="select * from userinfo where make='1'and job1 like'%"&mhname&"%'"
set rs=Server.CreateObject("ADODB.RecordSet")
rs.open sql,db,1%>
<%if rs.recordcount<=0 then%>
<table width="506" height="29" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="506" align="center" class="a1"><span class="style8"><br><br>对不起,没有符合你要找你的内容!</span></td>
</tr>
</table>
<%else%>
<table width="526" height="93" border="1" cellpadding="2" cellspacing="0" bordercolor="#6699FF" style="border-collapse:collapse ">
<tr align="center">
<td height="30" colspan="5"><span class="style1">个 人 应 聘 信 息</span></td>
</tr>
<tr align="center">
<td width="72" height="30"><span class="style4">姓名</span></td>
<td width="58" height="30"><span class="style4">年龄</span></td>
<td width="100" height="30"><span class="style4">专业</span></td>
<td width="161"><span class="style4">求职意向</span></td>
<td width="103" height="30"><span class="style4">发布时间</span></td>
</tr>
<%do while not rs.eof %>
<tr align="center">
<td height="30" align="center" class="a1"><a href="lookuser1.asp?user=<%=rs("user")%>"><%=rs("name")%></a></td>
<td height="30" align="center"><span class="style8"><%=rs("age")%></span></td>
<td height="30" align="center"><span class="style8"><%=rs("major")%></span></td>
<td align="center"><span class="style8"><%=rs("job1")%> <%=rs("job2")%></span></td>
<td height="30"><span class="style8"><%=rs("user_date")%></span></td>
</tr>
<%rs.movenext
loop%>
</table>
<%end if%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -