private void ReportePlanesViewer_Load(object sender, EventArgs e)
 {
     CrystalDecisions.CrystalReports.Engine.ReportDocument rd = new Util.ReportePlanes();
     this.CRViewerPlanes.ReportSource = rd;
     this.CRViewerPlanes.Show();
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     CrystalDecisions.CrystalReports.Engine.ReportDocument rd = new Util.ReportePlanes();
     this.CRViewerPlanes.ReportSource = rd;
     this.CRViewerPlanes.DataBind();
 }