如何检查asp页面 rs和conn是否关闭,清空
发布时间 | 2018/3/30 点击 | 次
自己做的asp小站速度慢,由于没有经验,有的页面数据集清空、关闭,有的页面没有关闭
除了把每页的代码都看一遍,有简单方法找出是哪个页面吗,谢谢~
所有页面底部加一个 <!--#include file="footer.asp"-->
footer.asp
set rs = nothing
if isObject(conn) then
conn.close
set conn=nothing
end if
我的rs 定义不规范,有:rs1,rso,rs2等。4楼的语句能做到都关闭吗?谢谢~
if isObject(rs1) then
rs1.close
set rs1=nothing
end if
if isObject(rs2) then
rs12.close
set rs2=nothing
end if
......
if isObject(conn) then
conn.close
set conn=nothing
end if