Criando um documento do Word no Coldfusion - como ter a numeração de paginação?

Estou criando um arquivo .doc no formato Word usando o código a seguir e, em seguida, cfheader e cfcontent para veiculação. Tudo está bom, mas preciso poder colocar informações dinâmicas no cabeçalho (ou rodapé), ou a numeração automática de paginação seria a segunda melhor opção.

Como devo modificar o código?

<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> 

questionAnswers(2)

yourAnswerToTheQuestion