2007-08-10 18:03
2007-08-10 19:56
2007-08-10 20:00
<%
set Ars=server.CreateObject ("ADODB.recordset")
Ars.Open "select * from public_note where object=2 order by [time] desc"
if not Ars.eof then
public_note=Ars("public_note")
end if
Ars.close
set Ars=nothing
%>
技术信息(用于支持人员)
错误类型:
ADODB.Recordset (0x800A0E7D)
连接无法用于执行此操作。在此上下文中它可能已被关闭或无效。
/blog/index.asp, 第 370 行
2007-08-10 20:20
Response.Write(Left(rs_star("nickname"),))
Response.Write(Left(rs_star("nickname"),1))
有加过1到12数字但都说
错误类型:
ADODB.Recordset (0x800A0BB9)
参数类型不正确,或不在可以接受的范围之内,或与其他参数冲突。
/blog/index.asp, 第 370 行
2007-08-10 20:22
2007-08-10 20:29
<%
set rs=server.CreateObject ("ADODB.recordset")
rs.Open "select * from public_note where object=2 order by [time] desc"
if not rs.eof then
public_note=rs("public_note")
end if
%>
技术信息(用于支持人员)
错误类型:
ADODB.Recordset (0x800A0E7D)
连接无法用于执行此操作。在此上下文中它可能已被关闭或无效。
/blog/index.asp, 第 370 行
2007-08-10 20:36
[此贴子已经被作者于2007-8-10 21:00:40编辑过]
2007-08-10 20:51
2007-08-10 21:05
整个程序多大,所有相关的文件?
打个包发上来。
2007-08-10 22:35