ASP 0185 : 8002000e 错误
asp 8002000e
又写asp了。
发生错误信息:
Response object error 'ASP 0185 : 8002000e'
Missing Default Property
/
A default property was not found for the object.
发生这样错误的原因大概是你试图去写出一个对象。比如说下面的代码:
<%
' ...
set rs = conn.execute("EXEC dbo.Some_Procedure")
response.write(rs)
%>
另外,conn.Execute(sqlStr)这样的语句似乎是没有返回值的,这也是本次错误发生的根源。
参考链接:http://classicasp.aspfaq.com/general/why-do-i-get-8002000e-errors.html