关于msgbox的使用
我在另外一个文件中已经定义了msgboxU"" 在其他文件也可以调用得到,但是下面这段代码却使用不了它if request.querystring("act")="del" then
conn.begintrans
conn.execute"delete * from info where i_id=" & session("uid")&" and upid='"&request.QueryString("id")&"'"
if err.number<>0 then
msgboxU"删除失败"
conn.rollbacktrans
else
msgboxU"删除成功"
end if
end if
为什么会这样啊?