I am using asp.net and Crystal Report Apllication Server 9 to dynmaically view crystal reports based on data from a Sybase database. The viewing works fine (passing parameters and all), but now I need to export the report (to PDF) and email it. I am viewing the report as follows:
Protected WithEvents CrystalReportViewer1 As CrystalDecisions.Web.CrystalReportViewer
Dim rcDoc As ReportClientDocument
Dim ReportToShow
ReportToShow = Session("SelectedReport"
rcDoc.Open(ReportToShow)
CrystalReportViewer1.DisplayGroupTree = False
CrystalReportViewer1.ReportSource = rcDoc
Any help would be appreciated
Protected WithEvents CrystalReportViewer1 As CrystalDecisions.Web.CrystalReportViewer
Dim rcDoc As ReportClientDocument
Dim ReportToShow
ReportToShow = Session("SelectedReport"
rcDoc.Open(ReportToShow)
CrystalReportViewer1.DisplayGroupTree = False
CrystalReportViewer1.ReportSource = rcDoc
Any help would be appreciated