Sto creando un formato Word .doc usando il seguente codice, quindi cfheader e cfcontent da servire. Tutto è buono, ma ho bisogno di essere in grado di inserire informazioni dinamiche nell'intestazione (o nel piè di pagina), o il pagenumber automatico sarebbe una seconda opzione migliore.Creazione di un documento di Word in Coldfusion - come avere il pagenumbering?
Come devo modificare il codice?
<cfsavecontent variable="myDocument">
<html xmlns:w="urn:schemas-microsoft-com:office:word">
<!--- Head tag instructs Word to start up a certain way, specifically in
print view. --->
<head>
<xml>
<w:WordDocument>
<w:View>Print</w:View>
<w:SpellingState>Clean</w:SpellingState>
<w:GrammarState>Clean</w:GrammarState>
<w:Compatibility>
<w:BreakWrappedTables/>
<w:SnapToGridInCell/>
<w:WrapTextWithPunct/>
<w:UseAsianBreakRules/>
</w:Compatibility>
<w:DoNotOptimizeForBrowser/>
</w:WordDocument>
</xml>
</head>
<body>
Regular HTML document goes here
<!--- Create a page break microsoft style (took hours to find this)
--->
<br clear="all"
style="page-break-before:always;mso-break-type:page-break" />
Next page goes here
</body>
</html>
</cfsavecontent>
Quale versione di CF? – jfrobishow
versione 9.01, è necessario aggiungere il testo minimo per essere autorizzati a commentare – Saul