Click here to Skip to main content
Click here to Skip to main content

Crystal Report database connection in ASP.NET

By , 18 Jan 2008
 

Introduction

In this article I am going to discuss how to use UDL file with Crystal Report to connect particular database.

Using the code

What is UDL?

Universal Data Link files (.udl files) can be used to store information of connection string. So it works as a common user interface for specifying connection attributes.

How to create a UDL file?

  1. Open a notepad and save it using .udl extension. (Note: don not write anything in that notepad). Udl_Creation.JPG 2. Now it displays with small computer icon.

udl_file.JPG
3. Now you should configure your udl file. Double click on the udl file. Now it displays as follows.
udl_Configure_1.JPG
4. Now select a provider. In this example I have used Microsoft SQL server 2005 express edition. So I need to use Microsoft OLE DB Provider for SQL Server as the provider. Then click Next button or Connection tab.

5.Then you will have to select details which related to SQL server. After providing those data, you can check connection is success or not by clicking Test Connection button.

Now you can add crystal report to your project. Select OLE DB (ADO) as the data source of the project.

Report_Configure1.JPG

Then display OLE DB (ADO) dialog box. Now select use data link file and browse your .udl file.

Report_Configure2.JPG

After configuring data source, you can add SQL query to crystal report by double clicking AddCommand. Now you can SQL query here.

Report_Configure3.JPG

After creating crystal report you can display it on your asp.net web page. For that you have to add CrystalReportViwer control to your web page. After then write following code in the code behind page.

using System.Data;

using System.Configuration;

using System.Web;

using System.Web.Security;

using System.Web.UI;

using System.Web.UI.WebControls;

using System.Web.UI.WebControls.WebParts;

using System.Web.UI.HtmlControls;



using CrystalDecisions.CrystalReports.Engine;

using CrystalDecisions.Shared;

using CrystalDecisions.Web;

public partial class _Default : System.Web.UI.Page 

{

    ReportDocument doc;

    protected void Page_Load(object sender, EventArgs e)

    {

        try
        {
            doc = new ReportDocument();

            doc.Load(MapPath("~\\TestReport.rpt"));



            CrystalReportViewer1.ReportSource = doc;

        }

        catch (Exception ex)

        {

            Label1.Text = ex.Message;

        }

    }

}

         

Points of Interest

You can use the for windows based application development also.

License

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

About the Author

Manjula Wickramathunga
Team Leader Creative Technology Solutions Pte Ltd
Sri Lanka Sri Lanka
Member
Manjula Wickramathunga currently is working at Lion Brewery (Ceylon) PLC as a Team Leader. He is working with SAP and Microsoft Technologies such as C#, MS SQL server 2000,2005 and 2008, ASP.NET 2.0/3.5/4.0.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 3memberbhagyap29 Dec '11 - 0:04 
GeneralMy vote of 5memberPankaja Kanavi28 Dec '11 - 21:10 
GeneralThanksmembertkjbbs11 Jun '08 - 13:15 
GeneralMS SQL SERVER EXPRESS 2005 AND CRYSTAL REPORTmemberAP Software14 Feb '08 - 8:36 
GeneralRe: MS SQL SERVER EXPRESS 2005 AND CRYSTAL REPORTmemberManjula Wickramathunga14 Feb '08 - 16:54 

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.6.130516.1 | Last Updated 18 Jan 2008
Article Copyright 2008 by Manjula Wickramathunga
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid