<%
strsql="select top 4 id,title,datetime from news_info order by id desc"
set rs = server.createobject("adodb.recordset")
rs.open strsql, conn, 1, 1
while not rs.eof %>
<%
line=0
strsql="select top 2 * from job_info order by id desc"
rs.open strsql, conn, 1, 1
while not rs.eof %>
<%
rs.movenext
line=line+1
wend
rs.close
line2=6-line
strsql="select top "&line2&" * from gqxx_info order by id desc"
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
%>