<%
menu_width=117
erji_w=115
%>
<%set rs=server.CreateObject("adodb.recordset")
rs.open "select * from nihao39_e_menu where show=false order by sort asc",conn,1,1
if rs.eof and rs.bof then
%>
<%set rss=server.CreateObject("adodb.recordset")
rss.open "select * from nihao39_e_mmenu where show=false and bid="&rs("id")&" order by sort asc",conn,1,1
if rss.eof and rss.bof then
%>
<%else%>
<%do while not rss.eof%>
<%
rss.movenext
loop
end if
rss.close
set rss=nothing
%>
<%
rs.movenext
loop
end if
rs.close
set rs=nothing
%>
<%
set rs=Server.CreateObject("ADODB.RecordSet")
sql="select * from nihao39_e_other where id=11"
rs.open sql,conn,1,1
if rs.eof and rs.bof then
response.write "
No Data
"
else
%>
<%=rs("content")%>
<%
rs.close
set rs=nothing
end if
%>