📄 info.asp
字号:
<!--#include file="setup.asp" -->
<%
stype=request("type")
if stype="" or stype=0 then
stype=1
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><%=web_name%>公司简介</title>
<link href="inc/style.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="0" topmargin="0">
<!--#include file="index_top.asp" -->
<table width="762" height="5" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="f5f5f5" class="tablelinenotop">
<tr>
<td></td>
</tr>
<tr>
<td height="1" bgcolor="#CCCCCC"></td>
</tr>
</table>
<table width="762" height="335" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="tablelinenotop">
<tr>
<td width="170" valign="top" bgcolor="f5f5f5">
<div align="center">
<table width="100%" height="47" border="0" cellpadding="0" cellspacing="0">
<tr>
<td><img src="image/info/info.jpg" width="170" height="50"></td>
</tr>
</table>
<table width="100%" height="148" border="0" cellpadding="0" cellspacing="0">
<tr>
<td> </td>
</tr>
</table>
</div></td>
<td width="1" bgcolor="#cccccc"></td>
<td width="583" valign="top"><table width="95%" height="45" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td><div align="left"><img src="image/info/info_title.gif" width="200" height="40"></div></td>
</tr>
</table>
<table width="90%" height="1" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#CCCCCC"></td>
</tr>
</table>
<table width="99%" border="0" cellpadding="0" cellspacing="0">
<%
set rs = Server.CreateObject("ADODB.Recordset")
if stype=1 then
strsql="select * from job_info"
rs.Open strsql, conn, 1, 1
while not rs.eof %>
<tr class="font">
<td width="12%" height="25">
<div align="right"><img src="image/bullet_arrow.gif" width="8" height="6">
</div></td>
<td width="88%" height="25">[<font color="#FF3300">招聘</font>] <a href="info_view.asp?id=<%= rs("id") %>&type=1"><font color="#FF3300"><%= rs("title") %></font></a> (<%= rs("datetime") %>)
</td>
</tr>
<%rs.movenext
wend
rs.close
end if
if stype=2 then
strsql="select * from gqxx_info"
rs.Open strsql, conn, 1, 1
while not rs.eof
if rs("type") =1 then
info_type="供应"
info_col="333333"
else
info_type="需求"
info_col="003399"
end if
%>
<tr class="font">
<td width="12%" height="25">
<div align="right"><img src="image/bullet_arrow.gif" width="8" height="6">
</div></td>
<td width="88%" height="25"> [<font color="#<%= info_col %>"><%= info_type %></font>] <a href="info_view.asp?id=<%= rs("id") %>&type=2"><font color="<%= info_col %>"><%= rs("title") %></font></a> (<%= rs("datetime") %>)
</td>
</tr>
<%rs.movenext
wend
rs.close
set rs=nothing
end if
%>
</table> </td>
</tr>
</table>
<!--#include file="index_down.asp" -->
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -