无法获取标签的内容以显示coldfusion builder 2扩展对话框

时间:2011-07-13 16:57:20

标签: coldfusion coldfusionbuilder

这是我的代码......

<cfoutput>
<cfheader name="Content-Type" value="text/xml">  
<response showresponse="true" status="success">  
<ide handlerfile="deploySvnPart2.cfm">  
<dialog width="550" height="500" title="Amend Contents of Temp Dir"/>  
<input name="go" Label="Checked"  type="boolean" />

<cfsavecontent variable="moo" > 
<![CDATA[  
<p style="color:black;">Any HTML content</p>  
]]>
</cfsavecontent>  
<body>#moo#</body>  
<input name="go" Label="#len(moo)#"  type="boolean" />
</ide>
</response> 
</cfoutput>

当用户显示此页面时,他们只显示2个输入,但不显示正文标记的内容。

这包含在.cfm页面中,并在用户从第一个屏幕(在idg_config.xml中定义)中创建一些初始chocies时显示

是否有任何理由显示身体标签的内容?

1 个答案:

答案 0 :(得分:0)

你是否在没有CDATA阻止的情况下尝试过它?在示例中,我看到开发人员没有使用CDATA块。