菜鸟自建影院,请大神指点
我自建个网吧影院,建个index.asp源文件:
<!--#include file = "Conn.asp"-->
<%
Set rs = server.CreateObject("adodb.recordset")
sql = "SELECT * from movWeb where modvalue=1"
rs.Open sql, conn, 1, 1
if Not rs.eof then
modname=rs("modname")
end if
rs.close
set rs=nothing
set conn=nothing
if modname<>"" then
Response.Write "<script>window.location.href='/"&modname&"/index.asp';</script>"
else
Response.Write "<script>window.location.href='/xbs/index.asp';</script>"
end if
%>
执行后提示:
ADODB.Recordset 错误 '800a0bb9'
参数类型不正确,或不在可以接受的范围之内,或与其他参数冲突。
/index.asp,行 5
这个是什么问题?