I need to add an header to a word document previously generated by a component that convert html to rtf (SautinSoft). This component does not support thead { display: table-header-group; }
. Without using COM, is there a way to achieve this in .NET?
views:
19answers:
1
A:
Here is the answer. HTML-to-RTF Pro DLL .Net of SautinSoft support adding an header or a footer :
htr.Header.Html(htmlHeader);
htr.Header.Rtf(rtfHeader);
Sebastien Lachance
2010-06-28 15:24:19