Hi,
As our company security policy does not allow us to upload any code and files i just give the sample piece of code to render the pdf.
Using Aspose.pdf
Pdf pdf = new Pdf();
Section section = pdf.Sections.Add();
Aspose.Pdf.Table table = new Aspose.Pdf.Table();
Row row = table.Rows.Add();
row.Border = new BorderInfo((int)BorderSide.All,0.5.F, new Color(232,232,160));
Cell cell = row.Cells.Add("<UL><LI>One</LI><LI>Two</LI><LI>Three</LI></UL>This is test message");
((Text).cell.Paragraphs[0]).IsHtmlTagSupported = true;
pdf.Save("Test.pdf",SaveType.OpenInAcrobat,Response);
Response.End();
The above code should render the UnOrderedList first then the test message but its not.
Its rendering the UnOrderedList at the End.
Hope this code help you to find our problem.
Thanks
Karthik Kumar
Verizon Data Services India