怎样才能让从asp文本域提交进access备注字段的内容保存住段落(50分)

  • 主题发起人 主题发起人 redwood
  • 开始时间 开始时间
R

redwood

Unregistered / Unconfirmed
GUEST, unregistred user!
我存进去后,再取出来什么段落也没有了……
应该怎么做才能保证段落?
 
我不知道是不是没有说清楚!
我是想知道怎么保存住发言的时候弄得那些段落。
不想读出来的是一对没有段落的东西
 
实在不清楚你的意思,是不是说输入的时候有回车,然后显示的时候就没有了呢?
可以在输出时判断一下是不是回车符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
%>
希望对你有帮助
 
谢谢
不过
strTmp=trim(<此处是存放正文的变量>)
是最大的败招
 
为什么是最大的败招呢?希望明示!
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
D
回复
0
查看
2K
DelphiTeacher的专栏
D
后退
顶部