I am trying to export a crystal report into PDF format using the below code.
Report.ExportToDisk(ExportFormatType.PortableDocFormat, _
System.AppDomain.CurrentDomain.BaseDirectory() & sPDF_FileName)
The format of the PDF is normal, like an A4 size on local host, but when creating the file on server, the format is entirely different. The report or the page is sliced into small pieces and a single page is converted into multiple pages.
I appreciate your help.
Thank you.