Click here to Skip to main content
Licence CPOL
First Posted 13 May 2010
Views 12,924
Bookmarked 11 times

Microsoft SQL Server Reporting Services (SSRS) using LINQ and ASP.NET

By | 13 May 2010 | Article
My first example of using Microsoft SQL Server 2008 Reporting Services (SSRS)
 
Part of The SQL Zone sponsored by
See Also

Introduction

What I want to do here is help out those who are just starting out with .NET 3.5 and the SSRS, if you follow the steps listed below you will be able to create your first Report.

Background

I have used VS 2008 and SQL 2005 and Linq for this example.

Steps

  1. Create a table for example StudentInfo:

  2. Add some data to your table:

    Report2.jpg

  3. Create a new project using VS 2008:

    Report3.jpg

  4. Add new item to your project:

    Report4.jpg

  5. Select the report from the list of item:

    Report5.jpg

  6. Enter your report name:

    Now what you have to do is drag the ReportViewer to your aspx page:

    Report6.jpg

    Select the datasource of your Reportviewer:

    Report7.jpg

This how your HTML page will look:

Report8.jpg

Here are some of the steps you have to do:

Add a dataset to your project and add a datatable to the dataset. I use MyDataset and DataTable StudentInfoDataTable. Here is the code you have to copy to your page load event:

protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
MyDataClassesDataContext db = new MyDataClassesDataContext();
IQueryable<StudentInfo> data = from d in db.StudentInfos select d;
ReportDataSource rds = new ReportDataSource("MyDataSet_StudentInfoDataTable", data);
ReportViewer1.LocalReport.DataSources.Add(rds);
}
}

License

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

About the Author

T.Ashraf

Technical Lead
TANVTECH
United States United States

Member

More than 10 years of experience in design, architecture and development of various commercial objects oriented application using C# 3.5, ASP.net, relational database like SQL 2008, Oracle, MySQL and SharePoint. Experienced in client-server application development, data security management system, e- commerce, automation processes, claim payment systems, file system and tracking systems, also has very good exposure to the entire software development life cycle.
Tanvtech.com
http://tanvtech.com/Articles/MyFirstSSRSReport.aspx
http://tanvtech.com/Articles/MyFirstSSRSSubReport.aspx
http://tanvtech.com/Articles/MyFirstWcfArticle.aspx
http://tanvtech.com/Articles/MyFirstWcfClientArticle.aspx

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

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMy vote of 1 Pinmemberrams2hari4:13 20 May '10  
GeneralRe: My vote of 1 PinmemberT.Ashraf4:48 26 May '10  
GeneralIncomplete Pinmemberrams2hari4:13 20 May '10  
GeneralMy vote of 2 Pinmembertec-goblin23:32 17 May '10  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 13 May 2010
Article Copyright 2010 by T.Ashraf
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid