content=rs("content")
content=replace(content,"
","") '换行符替换为空
for i=0 to 4
replaceweb(i)=Replace(replaceweb(i),chr(13)," ")
replaceweb(i)=Replace(replaceweb(i),chr(10),"
")
replaceweb(i)=Replace(replaceweb(i),CHR(32)," ")
replaceweb(i)="
"& replaceweb(i)&"
"如果转换成
的话,那每行就成一个段落了。楼上的,你说的可以用么?那个不是js中的吗?asp一般不是默认vbs吗?难道在vbs中也可以使用\r\n??
--------------------
楼主,楼上的说的有道理,成了段落就更不好排版了,不如换成
的好
str=replace(str,vbcrlf,"
")
ascii码chr(13),chr(32)替换就行了。