Wrox Programmer Forums
Go Back   Wrox Programmer Forums > ASP.NET and ASP > ASP.NET 2.0 > ASP.NET 2.0 Basics
|
ASP.NET 2.0 Basics If you are new to ASP or ASP.NET programming with version 2.0, this is the forum to begin asking questions. Please also see the Visual Web Developer 2005 forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP.NET 2.0 Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 20th, 2007, 08:28 AM
Registered User
 
Join Date: Jul 2007
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default Export Crystal Report Programatically

Hi,
I'm using the following code to Export the crystal report but it exporting blank page.
protected void Page_Load(object sender, EventArgs e)
{
 ReportDocument oReport = new ReportDocument();
 if (!Page.IsPostBack)
  {
   oReport.Load(Server.MapPath("Reports/rptCropSoil.rpt"));
   Crtv.ReportSource = oReport;
  }
  ViewState["CrtvDataSource"] = oReport;
}
protected void BtnExport_Click(object sender, ImageClickEventArgs e)
{
 ReportDocument oReport = new ReportDocument();
 oReport = (ReportDocument)ViewState["CrtvDataSource"];
  oReport.ExportToHttpResponse(ExportFormatType.Port ableDocFormat, Response, true, "Your Exported File Name");
}

This code is saving Blank page on my system. But if i provide the complete code on page_load i.e.

ReportDocument oReport = new ReportDocument();
if (!Page.IsPostBack)
  {
   oReport.Load(Server.MapPath("Reports/rptCropSoil.rpt"));
   oReport.ExportToHttpResponse(ExportFormatType.Port ableDocFormat, Response, true, "Your Exported File Name");
  }

than Working fine. But i want to perform this on Button click. Please help me.


Thank you so much







Similar Threads
Thread Thread Starter Forum Replies Last Post
how to export crystal report to excel manoj_k79 Classic ASP Basics 2 September 12th, 2011 01:52 AM
Export Crystal Report to PDF aarunlal ASP.NET 2.0 Professional 1 June 28th, 2006 01:18 PM
Export Crystal Report to PowerPoint usamaalam Crystal Reports 0 January 29th, 2005 08:13 AM
Crystal Report export problem kalyanb BOOK: Professional Crystal Reports for VS.NET 0 December 3rd, 2004 03:00 AM
Pdf Crystal Report export Kristoff Crystal Reports 1 October 21st, 2003 09:38 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.