Tworzę format Worda .doc, używając następującego kodu, a następnie cfheader i cfcontent do wyświetlenia. Wszystko jest w porządku, ale muszę umieć umieszczać informacje dynamiczne w nagłówku (lub stopce), lub automatyczne numerowanie stron byłoby drugą najlepszą opcją.Tworzenie dokumentu Word w Coldfusion - jak uzyskać numerację stron?
Jak zmienić kod?
<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>
Która wersja CF? – jfrobishow
wersja 9.01, trzeba dodać minimalny tekst, aby móc komentować – Saul