Anand Navale

Anand Navale

  • NA
  • 149
  • 6.8k

How to save word document into HTML file using C#

Mar 5 2020 5:38 AM
I have word document with table, table has multiple row .and that row contains nested unordered list like following format .
  • 1

     o 1.2

    • 1.2.1
    • 1.2.2
  • 2
but when i save that word document in html format then nested list not generated properly
 
What I have tried:
 
objDoc.SaveAs(ref fileNameHTML, ref fileFormat, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown, ref unKnown);
 
Also i have try
 
object szDocFormatNew = 10;
objDoc.SaveAs(ref fileNameHTML,ref szDocFormatNew);
 
 
Please help me to sort out my problems. 
 

Answers (1)