| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 986 人关注过本帖
标题:严重求助高手
只看楼主 加入收藏
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
 问题点数:0 回复次数:24 
严重求助高手
技术信息(用于支持人员)
  • 错误类型: Microsoft VBScript 编译器错误 (0x800A03F2) 缺少标识符 /andrew518/liuyan.asp, line 105, column 1 这是错误信息,怎么回事?

[此贴子已经被作者于2005-10-14 21:25:44编辑过]

搜索更多相关主题的帖子: 严重 
2005-10-14 20:19
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 

全部代码如下,但我在没输入计数器前还是能打开的,我输入的就是划线红字部份 <%@LANGUAGE="VBSCRIPT"%> <!--#include file="../Connections/liuyan.asp" --> <% Dim Recordset1 Dim Recordset1_numRows

Set Recordset1 = Server.CreateObject("ADODB.Recordset") Recordset1.ActiveConnection = MM_liuyan_STRING Recordset1.Source = "SELECT * FROM liuyandata ORDER BY datetime DESC" Recordset1.CursorType = 0 Recordset1.CursorLocation = 2 Recordset1.LockType = 1 Recordset1.Open()

Recordset1_numRows = 0 %> <% Dim Repeat1__numRows Dim Repeat1__index

Repeat1__numRows = 10 Repeat1__index = 0 Recordset1_numRows = Recordset1_numRows + Repeat1__numRows %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>台风留言本</title> <style type="text/css"> <!-- body { background-image: url(); } .style2 {font-size: 36px} --> </style></head>

<body> <table width="760" border="1" cellspacing="100" background="../ww.jpg" bgcolor="#006666"> <tr> <th scope="col"><p><a href="guestbook.asp">签写留言</a></p> <p><a href="index.asp">查看留言</a></p> <p><a href="admin.asp">管理留言</a> </p> <p>&nbsp;</p></th> <th height="72" scope="col"><span class="style2">台风留言版</span></th> </tr> </table>

<% While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF)) %> <% If Not Recordset1.EOF Or Not Recordset1.BOF Then %> <table width="760" border="1"> <tr> <td width="157">您的大名</td> <td width="587"><p><%=(Recordset1.Fields.Item("name").Value)%></p></td> </tr> <tr> <td>E-Mail</td> <td><%=(Recordset1.Fields.Item("email").Value)%></td> </tr> <tr> <td height="21">个人主页</td> <td><%=(Recordset1.Fields.Item("homepage").Value)%></td> </tr> <tr> <td height="22">留言主题</td> <td><%=(Recordset1.Fields.Item("title").Value)%></td> </tr> <tr> <td height="81" bgcolor="#FF99CC">留言内容</td> <td><%=(Recordset1.Fields.Item("content").Value)%></td> </tr> <tr> <td bordercolor="#33FFFF">站长回复</td> <td><%=(Recordset1.Fields.Item("recontent").Value)%></td> </tr> </table> <table width="760" border="1"> <tr> <td width="162" bgcolor="#FFFFCC">留言时间</td> <td width="252"><%=(Recordset1.Fields.Item("datetime").Value)%></td> <td width="84" background="../web.gif">&nbsp;</td> <td width="123">留言</td> <td width="105">管理</td> </tr> </table> <% End If ' end Not Recordset1.EOF Or NOT Recordset1.BOF %> <% If Recordset1.EOF And Recordset1.BOF Then %> <table width="760" border="1"> <tr> <td width="621">暂无留言</td> <td width="123">留言</td> </tr> </table> <% End If ' end Recordset1.EOF And Recordset1.BOF %> <% Repeat1__index=Repeat1__index+1 Repeat1__numRows=Repeat1__numRows-1 Recordset1.MoveNext() Wend %>

<p>您是第 <% . dim files,fs,thisfile,counts,out files=server.mappath("count.txt") Set fs=CreatObject("Scripting.FileSystemObject") Set thisfile=fs.opentextfile(files) counts=thisfile.readline thisfile.close

response.write(counts) counts=counts+1 set out=fs.createtextfile(files) out.writeline(counts) out.close set fs=nothing

%> 访问者</p> <p>&nbsp;</p> </body> </html> <% Recordset1.Close() Set Recordset1 = Nothing %>

2005-10-14 20:31
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
我插入的是一个文本计数器,急盼回复
2005-10-14 21:29
盖茨他爹
Rank: 6Rank: 6
等 级:贵宾
威 望:28
帖 子:5255
专家分:0
注 册:2005-5-3
收藏
得分:0 
<p>您是第 <% . dim files,fs,thisfile,counts,out 那个红点是什么意思
2005-10-14 21:53
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
错误类型: Microsoft VBScript 编译器错误 (0x800A0408) 无效字符 /andrew518/liuyan.asp, line 106, column 9 dim files,fs,thisfile,counts,out 怎么也打不开,怎么回事,那个红点我也不知需不需要.
2005-10-14 23:53
rainic
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:2367
专家分:0
注 册:2005-8-9
收藏
得分:0 
不要用中文的符号!!!
你代码中全是中文符号~~!不错才怪~!!

2005-10-15 07:54
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
你是说红字里面的中文字符吗?是不是指标点符号?
2005-10-15 10:40
rainic
Rank: 6Rank: 6
等 级:贵宾
威 望:27
帖 子:2367
专家分:0
注 册:2005-8-9
收藏
得分:0 
嗯 ~!!

2005-10-15 11:10
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
那我应该怎么改呢,哪些需要改呢,怎么使输入的字符变为英文字符呢?
2005-10-15 11:18
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
输入法

会不会打字??
2005-10-15 11:27
快速回复:严重求助高手
数据加载中...
 
   



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

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