Microsoft SQL Server Reporting Services (SSRS) using LINQ and ASP.NET
My first example of using Microsoft SQL Server 2008 Reporting Services (SSRS)
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
- Create a table for example
StudentInfo
: - Add some data to your table:
- Create a new project using VS 2008:
- Add new item to your project:
- Select the report from the list of item:
- Enter your report name:
Now what you have to do is drag the
ReportViewer
to your aspx page:Select the
datasource
of yourReportviewer
:
This how your HTML page will look:

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);
}
}