为何无论set rs=conn.Execute(strSQL)是否出错indication_flag始终等于“mustexist”
<%
Set Conn = Server.CreateObject("ADODB.Connection")
CONN.Open application("connstring")
strSQL = "query_cktszml '" & get_entry_id & "','0','0','0','0','0','1'"
on error resume next
set rs=conn.Execute(strSQL)
if err.number<>0 then
indication_flag="notexist"
else
indication_flag="mustexist"
end if
%>