I need to convert word to the html, and write it to response.outputStream.
I wanna convert one page of the word document once.
I knew the HtmlFixedOptions can implement the html pagination, but looks the Css works wrong in IE6, 7, 8, everything messed up.
Can I get the html pagination by other choice? I need this to work in IE6,7 or 8.
Also, I wanna get the word tracking change highlight, any suggestion?
Thanks
Hi Jason,
Document(@“C:\Temp\in.doc”);
HtmlFixedSaveOptions saveOptions = new HtmlFixedSaveOptions();
saveOptions.PageIndex = 0;
saveOptions.PageCount = 1;
doc.Save(@“C:\temp\out.html”,
saveOptions);
Hi Awais,
Hi Jason,
Thank you for your interest in Aspose.Words. You are absolutely right, the problem occurs because IE6, 7 and 8 do not support CSS3:
http://www.w3schools.com/cssref/css3_browsersupport.asp
In fixed page HTML we extensively use CSS3 features, especially transformation matrixes.
As a workaround, I would suggest you to use some fallback for viewing documents in I IE6, 7 and 8. For example you can use Simple image, SVG or SWF as fallback. I think in your case SWF fallback would be preferred because I IE6, 7 and 8 have limited support of SVG. Let me know if using SWF is acceptable option for you.
Best regards,
The issues you have found earlier (filed as ) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by MuzammilKhan