Cita:
Iniciado por HugoRiquelme
Estimados yo tengo una solucion a este problema, el reporte se deberia limpiar de la siguiente manera.
I HAVE THIS SOLUTION!!!
using System;
using CrystalDecisions.CrystalReports.Engine;
using CrystalDecisions.Shared;
using System.Configuration;
public partial class ShowReport : System.Web.UI.Page{
ReportDocument myReportDocument = new ReportDocument();
protected void Page_Load(object sender, EventArgs e){
myReportDocument.Load(Server.MapPath("valida_state ment.rpt"));
CrystalReportViewer1.ReportSource = myReportDocument;
CrystalReportViewer1.DataBind();
}
protected void CrystalReportViewer1_Unload(object sender, EventArgs e){
myReportDocument.Close();
myReportDocument.Dispose();
}
}
No es lo mismo que dijo arriba
rmd97?