Crystal Reports Print To Pdf
Crystal Reports Tutorial Pdf
Hi All,I have a button abd a crystal report viewer in.aspx page.When I click that button, the crystal report should be exported to pdf and the exported pdf should be opended in a new pdf window not in the same browser window.I'm using the below:-ReportDocument doc=new ReportDocument;doc.Load('myreport.rpt');Then, I use MemoryStream to convert ot pdf.MemoryStream stream=(MemoryStream) doc.CrystalDecisions.Shared.ExportFormatType.PortableDocFormat;like above.Problem is, pdf does not open in a new window, it uses the same browser window.