标题:夜游的大虾帮帮忙啊
只看楼主
方林
Rank: 1
等 级:新手上路
帖 子:12
专家分:0
注 册:2005-4-24
 问题点数:0 回复次数:2 
夜游的大虾帮帮忙啊

我是我的程序 <% If Session("enter")=Empty Then Response.Redirect"enter.htm" End If %> <html> <body> 聊天看板 <hr> <% set dbconn=server.createobject("adodb.connection") dbconn.open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & Server.MapPath("GT.mdb")

sql="Select Top 10 * From chatroom Order By time Desc" Set rst=Server.Createobject("adodb.recordset") rst.Open sql,dbconn,cursor,2

For i=1 to 10 message=replace("" & rst("note"),vbcrlf,"<BR>") Response.Write"<font color=green>" & TimeValue(rst("time")) & "</font> " & rst("sex") & "<font color="& rst("color")&">" & rst("nick") & "说: " & message & "</font><BR>" rst.MoveNext if rst.eof then exit For next

rst.Close dbconn.Close %> </body> </html> 错误:

  • 错误类型: Microsoft VBScript 编译器错误 (0x800A041F) /view.asp, 第 24 行 next 编译错找了半天却觉得没错,没办法了 帮帮忙吧

  • 搜索更多相关主题的帖子: 夜游 
    2005-04-27 23:43
    cjh
    Rank: 1
    等 级:新手上路
    帖 子:4
    专家分:0
    注 册:2005-3-31
    得分:0 
    if rst.eof then exit For next 应该改成 if rst.eof then exit For next 或 if rst.eof then exit For end if next

    从现在起,做一个自己喜欢的人!
    2005-04-28 00:00
    surnfu
    Rank: 1
    等 级:新手上路
    帖 子:102
    专家分:0
    注 册:2005-3-21
    得分:0 
    呵  楼上的正确

    当换行 就需要写上end if

    http://
    2005-04-28 06:16



    参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-16897-1-1.html




    关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

    编程中国 版权所有,并保留所有权利。
    Powered by Discuz, Processed in 0.096659 second(s), 7 queries.
    Copyright©2004-2024, BCCN.NET, All Rights Reserved