Estoy abriendo un Reporte y convirtiendolo a PDF pero me falta lo ultimo..
Código:
Reportes.Convertirreporte cPDF = new Reportes.Convertirreporte();
byte[] reporte;
Stream s;
ReportDIE cr = new ReportDIE();
s = cr.ExportToStream(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat);
reporte = cPDF.ConvertStreamToByteBuffer(s);
//Response.ClearContent();
//Response.ClearHeaders();
//Response.ContentType = "application/pdf";
//Response.BinaryWrite(reporte);
//Response.Flush();
//Response.Close();
Lo que esta comentarizado, no encuentro esa propiedad.