Hola, tengo un detalle al exportar un reporte de crystal reports a formato pdf, ya que al momento de abrirlo me sale el siguiente error 'distintivo desconocido:
0‚05"·
tengo el sig codigo:
Dim oStream As System.IO.MemoryStream
oStream = Session("Report").ExportToStream (CrystalDecisions.Shared.ExportFormatType.PortableDocFormat)
Response.Clear()
Response.Buffer = True
Response.ContentType = "application/pdf"
Response.BinaryWrite(oStream.ToArray())
Response.End()
Espero alguien tenga una solucion?
Salu2.