找回密码
 注册
搜索
热搜: 回贴
  • 前程无忧官网首页 有什么好的平台可以
  • 最新的销售平台 互联网营销的平台有哪
  • 制作网页的基本流程 网页制作和网页设
  • 【帝国CMS】输出带序号的列表(数字排
  • 网站建设公司 三一,中联,极东泵车的
  • 织梦 建站 织梦网站模版后台怎么更改
  • 云服务官网 哪些网站有免费的简历模板
  • 如何建网站要什么条件 建网站要用什么
  • 吉林市移动公司电话 吉林省退休人员网
  • 设计类毕业论文 网站设计与实现毕业论
查看: 44|回复: 5

FSO的一个问题

[复制链接]
发表于 2010-1-17 01:22:34 | 显示全部楼层 |阅读模式 IP:江苏扬州
我用fso写入一个文件,但在读取时不能换行,例如:
输入:
abcdefghijkl
asdfghjkl
123456
读取时却是:
abcdefghijklasdghjkl123456
代码如下:
<%
dim btext,fso,otext
btext=request.form("text")
local=server.mappath("1.doc")
set fso=server.CreateObject("scripting.filesystemobject")
set otext=fso.opentextfile(local,2,true)
otext.write btext
otext.close()
set otext=fso.opentextfile(local,1,true)
counter=0
do while not otext.atendofstream
counter=counter+1
rst=otext.readline
response.write rst
loop
otext.close()
%>
请教各位老师,如何写才能实现换行。
发表于 2010-1-17 01:22:38 | 显示全部楼层 IP:江苏扬州
<%
function HTMLDecode(fString)

fString = replace(fString, "&gt;", ">")
fString = replace(fString, "&lt;", "<")

fString = Replace(fString, "", CHR(13))
fString = Replace(fString, "</P><P>", CHR(10) & CHR(10))
fString = Replace(fString, "<BR>", CHR(10))
HTMLDecode = fString
end function



dim btext,fso,otext
btext=HTMLDecode(request.form("text"))
local=server.mappath("1.doc")
set fso=server.CreateObject("scripting.filesystemobject")
set otext=fso.opentextfile(local,2,true)
otext.write btext
otext.close()
set otext=fso.opentextfile(local,1,true)
counter=0
do while not otext.atendofstream
counter=counter+1
rst=otext.readline
response.write rst
loop
otext.close()
%>
这样就可以换行了
回复

使用道具 举报

发表于 2010-1-17 01:22:42 | 显示全部楼层 IP:江苏扬州
还是不能换行,请老师讲一下为什么要替换那些东西。
菜鸟请教!
回复

使用道具 举报

发表于 2010-1-17 01:22:46 | 显示全部楼层 IP:江苏扬州
html换行是<br>
你的是VB脚本,生成文本换行用vbcrlf
回复

使用道具 举报

发表于 2010-1-17 01:22:50 | 显示全部楼层 IP:江苏扬州
谢谢楼上的老师,我的问题解决了。
回复

使用道具 举报

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

本版积分规则

QQ|小黑屋|最新主题|手机版|微赢网络技术论坛 ( 苏ICP备08020429号 )

GMT+8, 2024-9-30 07:31 , Processed in 0.131667 second(s), 12 queries , Gzip On, MemCache On.

Powered by Discuz! X3.5

© 2001-2023 Discuz! Team.

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