设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 53|回复: 2
打印 上一主题 下一主题

为什么这个留言簿只能显示一条留言

[复制链接]
跳转到指定楼层
1#
发表于 2010-1-17 23:50:50 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
近日 在学习一个留言簿程序的时候 在生成一个book.txt文件后 为什么在这个文件中只能有一条留言,后面的留言都将会被一一覆盖 反正就只有一条留言
book. asp的代码如下:
<%@ Language=VBScript %>
<%
name=Request.Form ("text1")
email=Request.Form ("text2")
subject=Request.Form ("text3")
memo=Request.Form ("textarea1")
if name="" or email="" or subject="" or memo="" then
Response.Write "输入框不能是空白"
Response.End
end if
'第一行显示内容
line1="留言人:"&name
line1=line1&string(5," ")
email="<a href=mailt"&email&">"&email&"</a>"
line1=line1&"email:"&email&"<br>"
'第二行显示内容
line2="主题:"&subject&"<br>"
'第三行
memo=replace(memo,vbcrlf,"<br>")
line3="<table border=0 bgcolor=#ffffff><tr><td>"
line3=line3&memo&"</td></tr></table>"
'第四行为留言时间
line4="时间:"&now()
on error resume next
set fso=server.CreateObject ("scripting.filesystemobject")
Application.Lock
filepath=server.MapPath ("book.txt")
oldfilepath=server.MapPath ("bookold.txt")
fso.MoveFile filepath,oldfilepath
set fin=fso.OpenTextFile (oldfilepath,true)
set fout=fso.CreateTextFile (filepath)
fout.writeline line1
fout.writeline line2
fout.writeline line3
fout.writeline line4
fout.writeline fin.readall
fin.close
fso.DeleteFile oldfilepath,true
Application.UnLock
Response.Redirect "showbook.asp"
%>
2#
发表于 2010-1-17 23:50:54 | 只看该作者
if fso.fileexists(oldfilepath)=false then
fso.MoveFile filepath,oldfilepath
end if
set fin=fso.OpenTextFile(oldfilepath)' 在这在一加上true就会出错,郁闷
set fout=fso.CreateTextFile(filepath)
fout.writeline line1
fout.writeline line2
fout.writeline line3
fout.writeline line4
fout.writeline fin.readall
fin.close
fso.DeleteFile oldfilepath,true
我把下面的改成这样,在我这边测试成功,
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-20 01:25 , Processed in 0.105685 second(s), 8 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表