Hi Tahir,
I am facing an issue with table/cell borders while converting the aspose.word Document to Ms Word Doc.
Below is my code :
Document docFinalRep = data.GenerateReportInPdf();
docFinalRep.Save("D:\\Soft\Aspose\\" + fileName);
docFinalRep.Save(streamMemory, SaveFormat.Docx);
Response.AppendHeader("Content-Type", "application/doc");
Inside GenerateReportInPdf(),
I will merge some html report templates and create a html string of entire report, which i later build with DocumentBuilder and do some settings using PageSetup and the resulting document is returned by this fn.
I even tried all options to remove table and cell border while creating html string.
But still , when it is converted to MS Word Doc, it shows border.
Please help me