打开数据库后没有关闭会出现什么情况?
rs2.open"select top 8 * from gonggao where flid=0 order by time desc",conn,1,1if rs2.eof then
response.write "公告为空!!!"
response.end
else
while not rs2.eof
%>
• <a href="gonggao.asp?id=<%=rs2("id")%>" target="main"><%=rs2("title")%></a><br>
<%
rs2.movenext
wend
end if
rs2.close
set rs2=nothing
少了红色的代码,回有什么问题吗?但是这个程序还是照样运行。