实在不清楚你的意思,是不是说输入的时候有回车,然后显示的时候就没有了呢?
可以在输出时判断一下是不是回车符0D 0A,把它们换成<BR>就可以了.
<%
strTmp=trim(<此处是存放正文的变量>)
strPrn=""
intStp=len(strTmp)
for i=1 to intstp
if ( asc(mid(strTmp,i,1))<>10) then
if (asc(mid(strTmp,i,1))=13) then
if ((i+1)<=intstp) then
if (asc(mid(strTmp,i+1,1))=10) then
strPrn=strPrn+"<br>"
intBr=1
end if
end if
else
strPrn=strPrn+mid(strTmp,i,1)
end if
end if
intBr=intBr+1
next
response.write strPrn
%>
希望对你有帮助