<!-- #include file="conn.asp" -->
<%
sql="select count(*) form bbs"
set rs=server.CreateObject("adodb.recordset")
rs.open sql,conn,1,1
dim total=0 '错误所在行if not (rs.eof and rs.bof) then
do while not rs.eof
total=totaal+1
rs.movenext
loop
end if
rs.close
set rs=nothing
%>
<%=total%>
出现错误了
错误类型:
Microsoft VBScript 编译器错误 (0x800A0401)
语句未结束
/伯纳华丹福/bbssl.asp, line 15, column 9
dim total=0
--------^
这个是为什么?