使用 Aspose.Words 转换时如何在 HTML 中包含 PageFields
How to include PageFields in HTML when converting using Aspose.Words
我正在尝试在 HTML 字符串中包含当前页码的字段。我希望在我的字符串中包含 {{PAGE}} 标记就足够了,但它只会转换为 MailMergeField 而不是被 PageField 替换。
有人有什么建议吗?
请看下面HTML:
<html>
<head>
</head>
<body>
<p>
<span style="-aw-field-start:true"></span>
<span style="-aw-field-code:' PAGE '"></span>
<span style="-aw-field-separator:true"></span>
<span style="-aw-field-end:true"></span>
</p>
</body>
</html>
使用以下代码时,Aspose.Words 会将此 HTML 转换为真正的 PAGE 字段:
Document doc = new Document("D:\temp\in.html");
doc.Save("D:\Temp\out.docx");
我在 Aspose 工作,担任开发人员布道师。
我正在尝试在 HTML 字符串中包含当前页码的字段。我希望在我的字符串中包含 {{PAGE}} 标记就足够了,但它只会转换为 MailMergeField 而不是被 PageField 替换。
有人有什么建议吗?
请看下面HTML:
<html>
<head>
</head>
<body>
<p>
<span style="-aw-field-start:true"></span>
<span style="-aw-field-code:' PAGE '"></span>
<span style="-aw-field-separator:true"></span>
<span style="-aw-field-end:true"></span>
</p>
</body>
</html>
使用以下代码时,Aspose.Words 会将此 HTML 转换为真正的 PAGE 字段:
Document doc = new Document("D:\temp\in.html");
doc.Save("D:\Temp\out.docx");
我在 Aspose 工作,担任开发人员布道师。