Click here to Skip to main content
15,880,469 members
Articles / Web Development / ASP.NET
Article

Displaying , Exporting and Printing Crystal Reports in ASP.NET

Rate me:
Please Sign up or sign in to vote.
3.36/5 (43 votes)
14 Mar 2005CPOL1 min read 511.1K   13.3K   101   78
Displaying , exporting and printing crystal reports in ASP.NET with source code.

Image 1

Introduction

The main purpose of this document is to display the report without any error. I was bugged by the "Logon Failed Error" for several days, and now I finally have a code that displays report without any error. The code also Exports the report into .pdf, .xls, .rtf and .doc formats. It also prints the report directly to the printer.

Using the code

Unzip the crCodes.Zip and then run the crCode.vbproj project file.

--- OR ----

Just insert the Webform1.aspx file into your existing project, then copy the crystalreport2.rpt file into your project, and start using the code.

The entire source code of Webform1.aspx.vb is as follows. Simply design the form as shown in the image and place the Crystal Report Viewer control, and leave the name of controls to default:

VB
Imports CrystalDecisions.Shared
Imports System.IO

Public Class WebForm1
    Inherits System.Web.UI.Page

    Dim crReportDocument As CrystalReport2 = New CrystalReport2

    Protected WithEvents DropDownList1 As System.Web.UI.WebControls.DropDownList
    Protected WithEvents Button1 As System.Web.UI.WebControls.Button
    Protected WithEvents Label1 As System.Web.UI.WebControls.Label
    Protected WithEvents CrystalReportViewer1 As _
                             CrystalDecisions.Web.CrystalReportViewer
    Protected WithEvents Button2 As System.Web.UI.WebControls.Button

#Region " Web Form Designer Generated Code "
    'This call is required by the Web Form Designer.
    <System.Diagnostics.DebuggerStepThrough()> 
    Private Sub InitializeComponent()

    End Sub

    'NOTE: The following placeholder declaration is required 
    'by the Web Form Designer.
    'Do not delete or move it.
    Private designerPlaceholderDeclaration As System.Object

    Private Sub Page_Init(ByVal sender As System.Object,_ 
                        ByVal e As System.EventArgs) Handles MyBase.Init
        'CODEGEN: This method call is required by the Web Form Designer
        'Do not modify it using the code editor.
        InitializeComponent()


        ' this is the most IMPORTANT line of code
        ' if this line is not writen the 
        ' " LOGON FAILED" error starts displaying
        crReportDocument.SetDatabaseLogon("username",_ 
                                    "password", "sql-server", "database")

        ' the Above line works even if only username 
        ' and password is supplied as below

        'crReportDocument.SetDatabaseLogon("username",_
                                 "password") ', "sql-server", "database")

        ' this will hide the group tree
        CrystalReportViewer1.DisplayGroupTree = False

        CrystalReportViewer1.ReportSource = crReportDocument

        ' IF REPORT Uses Parameter's
        ' Pass Paramaters As Follows
        crReportDocument.SetParameterValue("city", "Mumbai")


        ' city = Parameter Name
        ' Mumbai = Parameter Value

        ' :-) thats ALL your Report Will Be displayed 
        ' now Without Logon Failed Error

        With DropDownList1.Items
            .Add("Rich Text (RTF)")
            .Add("Portable Document (PDF)")
            .Add("MS Word (DOC)")
            .Add("MS Excel (XLS)")
        End With
    End Sub

#End Region

    Private Sub Page_Load(ByVal sender As System.Object,_ 
                ByVal e As System.EventArgs) Handles MyBase.Load
        'Put user code to initialize the page here
    End Sub

    Sub ExportReport()

        Dim oStream As New MemoryStream ' // using System.IO

        'this contains the value of the selected export format.
        Select Case DropDownList1.SelectedItem.Text 

            Case "Rich Text (RTF)"
                '-----------------------------------------------------------

                oStream = crReportDocument.ExportToStream(_
                    CrystalDecisions.Shared.ExportFormatType.WordForWindows)
                Response.Clear()
                Response.Buffer = True
                Response.ContentType = "application/rtf"
                '------------------------------------------------------------

                '------------------------------------------------------------
            Case "Portable Document (PDF)"

                oStream = crReportDocument.ExportToStream(_
                    CrystalDecisions.Shared.ExportFormatType.PortableDocFormat)
                Response.Clear()
                Response.Buffer = True
                Response.ContentType = "application/pdf"
                '--------------------------------------------------------------

                '--------------------------------------------------------------
            Case "MS Word (DOC)"

                oStream = crReportDocument.ExportToStream(_
                        CrystalDecisions.Shared.ExportFormatType.WordForWindows)
                Response.Clear()
                Response.Buffer = True
                Response.ContentType = "application/doc"
                '---------------------------------------------------------------

                '---------------------------------------------------------------
            Case "MS Excel (XLS)"

                oStream = crReportDocument.ExportToStream(_
                                 CrystalDecisions.Shared.ExportFormatType.Excel)
                Response.Clear()
                Response.Buffer = True
                Response.ContentType = "application/vnd.ms-excel"
                '---------------------------------------------------------------
        End Select 'export format
        Try
            Response.BinaryWrite(oStream.ToArray())
            Response.End()
        Catch err As Exception
            Response.Write("< BR >")
            Response.Write(err.Message.ToString)
        End Try
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, _
                          ByVal e As System.EventArgs) Handles Button2.Click
        ExportReport()
    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, _
                          ByVal e As System.EventArgs) Handles Button1.Click
        crReportDocument.SetDatabaseLogon("USER", _
                                "PASSWORD", "SQL-SERVER", "DATABASE")
        crReportDocument.PrintToPrinter(1, False, 0, 0)
    End Sub
End Class

Why is the "Logon Failed Error" generated

The "Logon Failed" error is generated basically because, when the report is being displayed it tries to log on to the database server. Even though you have selected the server while designing, the report still needs the server name while displaying or exporting or printing.

The code line that removes the error is:

VB
crReportDocument.SetDatabaseLogon("USER", "PASSWORD", "SQL-SERVER", "DATABASE")

Or can also be used as:

VB
crReportDocument.SetDatabaseLogon("USER", "PASSWORD")

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalgood one Pin
Member 26788916-Mar-07 19:09
Member 26788916-Mar-07 19:09 
Questioncrystal report Pin
kk_upadhyay28-Feb-07 22:15
kk_upadhyay28-Feb-07 22:15 
QuestionI am getting a record per page... Pin
grigorythegreat5-Feb-07 3:47
grigorythegreat5-Feb-07 3:47 
AnswerRe: I am getting a record per page... Pin
Sylvester george15-Feb-07 20:09
Sylvester george15-Feb-07 20:09 
GeneralGood Artical Pin
sumja17-Jan-07 2:20
sumja17-Jan-07 2:20 
Generalprinting error Pin
contact_ashishjain15-Nov-06 23:57
contact_ashishjain15-Nov-06 23:57 
GeneralRe: printing error Pin
backSlashZero12-Sep-07 20:46
backSlashZero12-Sep-07 20:46 
QuestionURGENT : Crystal reports - export to prn programmatically Pin
NosheenA13-Nov-06 1:15
NosheenA13-Nov-06 1:15 
Hi,

I need to export a crstal report document *.prn programmatically.
I have only seen predefined export types.
Would anybody be able to let me know if this is possible for me to do. If so, how?!?!

This is quite urgent. I've spent the whoel day surfing the web for an answer.

thanks!

Nosheen
GeneralGood Example Pin
anil0012327-Sep-06 0:28
anil0012327-Sep-06 0:28 
GeneralThread was being aborted Pin
marquito_cuba5-Jun-06 11:50
marquito_cuba5-Jun-06 11:50 
GeneralGetting Blank Screen After Exporting PDF Pin
Sakkaravarthi10-May-06 0:08
Sakkaravarthi10-May-06 0:08 
QuestionRe: Getting Blank Screen After Exporting PDF Pin
guyvds200025-Apr-07 2:45
guyvds200025-Apr-07 2:45 
GeneralRe: Getting Blank Screen After Exporting PDF Pin
hkdhamija19-Jul-07 0:12
hkdhamija19-Jul-07 0:12 
Generalexporting the report Pin
j0ms9-May-06 6:15
j0ms9-May-06 6:15 
Question"Logon Failed" error while printing crystal report Pin
Naynesh Shah8-May-06 22:57
Naynesh Shah8-May-06 22:57 
AnswerRe: "Logon Failed" error while printing crystal report Pin
tawpuia4-Jul-08 1:24
tawpuia4-Jul-08 1:24 
JokeGood Artical Pin
ykg1-May-06 1:39
ykg1-May-06 1:39 
GeneralRe: Good Artical Pin
Suresh Pirsquare7-Sep-06 6:35
Suresh Pirsquare7-Sep-06 6:35 
GeneralError export Report with parameters Pin
Don Maxim28-Feb-06 22:18
Don Maxim28-Feb-06 22:18 
GeneralRe: Error export Report with parameters Pin
Thanh-hdu5-Mar-07 21:53
Thanh-hdu5-Mar-07 21:53 
GeneralUnable to debug the application Pin
skan81228-Feb-06 1:09
skan81228-Feb-06 1:09 
GeneralRe: Unable to debug the application Pin
Sakkaravarthi10-May-06 0:09
Sakkaravarthi10-May-06 0:09 
GeneralLogon Failed with C# web application Pin
steel_heart17-Jan-06 16:25
steel_heart17-Jan-06 16:25 
Generalcrsytal report login failure Pin
Vipin.d27-Dec-05 1:21
Vipin.d27-Dec-05 1:21 
QuestionHow could I use share printer for to print? Pin
Agent00931-Oct-05 20:21
Agent00931-Oct-05 20:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.