I am using asp.net and Crystal Report Application Server 9 to 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. Here is a summary of how the reports are viewed:
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