<%
set rs=conn.execute("select content as content from sy_basic_info where id=5")
if not rs.eof then
response.write(rs("content"))
else
response.write("constructing now.....")
end if
rs.close
set rs=nothing
%>
<%
set rs=conn.execute("select content as content from sy_basic_info where id=7")
if not rs.eof then
response.write(rs("content"))
else
response.write("constructing now.....")
end if
rs.close
set rs=nothing
%>
<%
set rs=conn.execute("select content as content from sy_basic_info where id=6")
if not rs.eof then
response.write(rs("content"))
else
response.write("constructing now.....")
end if
rs.close
set rs=nothing
%>