用什么方法改过来。。。
<%function changechr(str)
str=server.htmlencode(str)
str=replace(str,chr(39),"")
str=replace(str,vbcrlf,"<br>")
str=replace(str,chr(13),"<br>")
changechr=str
end function
%>
假如我按回车他会转换成<br>
但是当我从数据库读的时候,他显示的还是<br>
能什么能使他反过来。。。。。。