Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

asp.net export/email

Status
Not open for further replies.

zmcanally

Technical User
Jun 12, 2002
26
US
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

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top