Y este es el codigo utilizado para hacer la expotación:
Código ASP:
Ver original
Protected Sub btnPrint_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnPrint.Click Dim pdfPath As String pdfPath = Server.MapPath("~/") + "Reportes\Imprime.pdf" crp.ExportToDisk(ExportFormatType.PortableDocFormat, pdfPath) If strTipoReporte = "Id" Then crp.PrintOptions.PaperSource = CrystalDecisions.Shared.PaperSize.PaperLetter End If Response.ClearContent() Response.ClearHeaders() Response.ContentType = "application/pdf" Response.WriteFile(pdfPath) Response.Flush() Response.Close() System.IO.File.Delete(pdfPath) End Sub
¿En donde esta el error?