| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 986 人关注过本帖
标题:严重求助高手
只看楼主 加入收藏
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
是不是把红字里面的豆号改掉呢,改为英文字符的豆号呢?
2005-10-15 11:36
静夜思
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:济南的冬天
等 级:管理员
威 望:11
帖 子:8913
专家分:2567
注 册:2004-3-25
收藏
得分:0 
对,都改成英文符号

畅所欲言
2005-10-15 11:45
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
好像括号也不对 你在看看空格 也不能用全角的
2005-10-15 12:39
静夜思
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
来 自:济南的冬天
等 级:管理员
威 望:11
帖 子:8913
专家分:2567
注 册:2004-3-25
收藏
得分:0 
<td><%=(Recordset1.Fields.Item("recontent").Value)%></td>
变粗的这些英文字符都是全角的,

畅所欲言
2005-10-15 12:49
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
这种文档也能运行??


里面有好多
2005-10-15 12:51
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分: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 liyandata 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-15 12:56
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
应该说明的一点是当我删去红字部份时,就能显示了 按照上面那位大哥的做法,还是出现了以下错误 Microsoft VBScript 运行时错误 (0x800A000D) 类型不匹配: 'CreatObject' /andrew518/liuyan.asp, 第 109 行 第109行是:Set fs=CreatObject("Scripting.FileSystemObject")
2005-10-15 13:45
islet
Rank: 12Rank: 12Rank: 12
等 级:贵宾
威 望:89
帖 子:6548
专家分:0
注 册:2005-1-28
收藏
得分:0 
Set fs=server.CreatObject("Scripting.FileSystemObject")
2005-10-15 14:15
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
错误类型: Microsoft VBScript 运行时错误 (0x800A003E) 输入超出了文件尾 /andrew518/liuyan.asp, 第 110 行 第 110 行是:counts=thisfile.readline
2005-10-16 00:26
andrew518
Rank: 1
等 级:新手上路
帖 子:144
专家分:0
注 册:2005-10-5
收藏
得分:0 
拜托了
2005-10-16 01:23
快速回复:严重求助高手
数据加载中...
 
   



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

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