Mht document converstion

hi guys
I am trying to convert the attached document created using mhtml to .pdf but the headers and footers are not showing.
please advise

Aspose.Words.Document d = new Aspose.Words.Document(stream);
d.Save(@"c:\\docs\\docmhtm.doc");

Des

Hi

Thanks for your request. Actually, MHTML does not support header/footer natively. To support these features MS Word adds some custom tags and CSS attributes, like:

@page Section1
{size:14.0in 8.5in;
mso-page-orientation:landscape;
margin:.2in 22.3pt .2in .35in;
mso-header-margin:.2in;
mso-footer-margin:.35in;
mso-even-header:url("Mortgages.Charges.Register_files/header.htm") eh1;
mso-header:url("Mortgages.Charges.Register_files/header.htm") h1;
mso-even-footer:url("Mortgages.Charges.Register_files/header.htm") ef1;
mso-footer:url("Mortgages.Charges.Register_files/header.htm") f1;
mso-first-header:url("Mortgages.Charges.Register_files/header.htm") fh1;
mso-first-footer:url("Mortgages.Charges.Register_files/header.htm") ff1;
mso-paper-source:0;}

We will consider an ability to support this in Aspose.Words. I will notify you as soon as the issue is resolved. As a workaround, you can save your document in DOC or DOCX format using MS Word and then process it using Aspose.Words.
Best regards.