views:

19

answers:

1

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?

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