页脚在最后一页重复

时间:2011-11-03 09:17:00

标签: html doc

我正在生成一个单词doc。但在最后一页页脚显示在页脚和页脚中。我正在使用下面给出的代码

    <apex:page standardController="opportunity" extensions="BES_Quote_DOC" contentType="application/msWord" cache="true" standardStylesheets="false">

<head>
<style>
@page {mso-footer:f1;}
div.Section1{page:Section1;}

p.MsoFooter, li.MsoFooter, div.MsoFooter{
mso-pagination:widow-orphan;
tab-stops:center 216.0pt right 432.0pt;}

</style>
</head>

<body>
 <div class="Section1">
  <apex:form id="hidDiv"> 
   <table>
    <tr>
        <td>abcd</td>
        <td>efgh</td>
    </tr>
    <tr>
        <td>ijkl</td>
        <td>mnop</td>
    </tr>
    <tr>
        <td>qrst</td>
        <td>uvwx</td>
    </tr>
   </table>
   </apex:form>


    <div style="mso-element:footer" id="f1">
        <p class='MsoFooter' align="left" style="font-size: 10px">this is footer</p>
    </div> 
</div>
  </body>

</apex:page>

我不希望页脚在体内。我该怎么办。

感谢。

1 个答案:

答案 0 :(得分:1)

我猜你有这个代码并将其直接嵌入到你的文件中。页眉和页脚应放在单独的文件中。通过此链接,我可以更好地了解页眉和页脚的放置方式。 [http://sebsauvage.net/wiki/doku.php?id=word_document_generation] [1]