<!--#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 
 
 
提示这个错误是什么问题? |