|
|
<%
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 %>
<%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
%>
|
|
<%rs.movenext
wend
rs.close
set rs=nothing
end if
%>
|