これが私のコードです...
<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 つの入力のみが表示されますが、body タグの内容は表示されません。
これは .cfm ページに含まれており、ユーザーが最初の画面 (idg_config.xml で定義) からいくつかの初期選択を行ったときに表示されます。
body タグの内容が表示されない理由はありますか?