保留coldfusion字符串中的文本格式

时间:2013-07-10 19:45:26

标签: string coldfusion string-formatting

我有一个名为#text1#的coldfusion db字段字符串,它使用空格和换行符格式化,以便很好地显示如下:

<b>FINDINGS:</b> 
The house is red.  
The tree is green.

但是当我尝试将其加载到变量中并使用:

将其写入另一个数据库时
   <cfquery datasource="srsdb2_DEDR">
     INSERT INTO  Reports ( text1 ) VALUES ( '#text1#')
    </cfquery>
它看起来像是:

<b>FINDINGS:</b> The house is red. The tree is green.

如何防止丢弃信息并保留格式?

1 个答案:

答案 0 :(得分:0)

在Adobe live docs中检查HTMLEditFormat。