본문 바로가기

카테고리 없음

Crystal Report To Pdf New Window

Crystal Report To Pdf New Window

Crystal Reports Print To Pdf

Guide

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.