1.First Of All install Telerik Control on Your Machine .
TelerikReporting_Q1_2007_dev_setup.exe
2.It will show Telerik Reports on Your tool box of Dotnet Framework
3.On ur Solution Explorer ,R.C on ur Project name and Click on "Add Asp.Net Folders"
4.Add App_Code on Ur Project.
5.R.c. on App_Code and add Telerik Reports
6.View Designer mode Of Reports and Design your Reports.
7..Place Textboxes on Report To View the Data.On Code Window Make function that are called on the .aspx page .
8.Set the Value Property of textboxes as the name of the Column used in the Table that you extract from DataBase.
e.g TextBox1.Value=[=salary]
9.Display Report on .aspx page
using Telerik.Reporting.Processing;
10.Place a TeleRik Report Viewer on Your Page
11. On Page Load Make a object of Report class
e.g. Report1 rp=new Report1();
Always make attention Report class and .aspx page Class is not same
if You pass some value to the function that are build in the Report then pass by using the object
e.g.
rp.BindValue((DateTime)startdate.SelectedDate, (DateTime)enddate.SelectedDate);
ReportViewer1.Report=rp;
ReportViewer1.ShowExportGroup = true;
ReportProcessor.ExtensionDir = Server.MapPath("~/bin");
Export the Data in the pdf Format in Report
Telerik.ReportViewer.Design.dll
Telerik.ReportViewer.WinForms.dll
Telerik.Reporting.VsPackage.dll
Telerik.Reporting.Interfaces.dll
Telerik.Reporting.ImageRendering.dll
Telerik.Reporting.HtmlRendering.dll
Telerik.Reporting.dll
Telerik.Reporting.Design.dll
Telerik.ReportViewer.WebForms.dll
Telerik.Reporting.Processing.dll
Telerik.Reporting.Data.dll
In Web.config Files Add these Code
TelerikReporting_Q1_2007_dev_setup.exe
2.It will show Telerik Reports on Your tool box of Dotnet Framework
3.On ur Solution Explorer ,R.C on ur Project name and Click on "Add Asp.Net Folders"
4.Add App_Code on Ur Project.
5.R.c. on App_Code and add Telerik Reports
6.View Designer mode Of Reports and Design your Reports.
7..Place Textboxes on Report To View the Data.On Code Window Make function that are called on the .aspx page .
8.Set the Value Property of textboxes as the name of the Column used in the Table that you extract from DataBase.
e.g TextBox1.Value=[=salary]
9.Display Report on .aspx page
using Telerik.Reporting.Processing;
10.Place a TeleRik Report Viewer on Your Page
11. On Page Load Make a object of Report class
e.g. Report1 rp=new Report1();
Always make attention Report class and .aspx page Class is not same
if You pass some value to the function that are build in the Report then pass by using the object
e.g.
rp.BindValue((DateTime)startdate.SelectedDate, (DateTime)enddate.SelectedDate);
ReportViewer1.Report=rp;
ReportViewer1.ShowExportGroup = true;
ReportProcessor.ExtensionDir = Server.MapPath("~/bin");
Export the Data in the pdf Format in Report
Telerik.ReportViewer.Design.dll
Telerik.ReportViewer.WinForms.dll
Telerik.Reporting.VsPackage.dll
Telerik.Reporting.Interfaces.dll
Telerik.Reporting.ImageRendering.dll
Telerik.Reporting.HtmlRendering.dll
Telerik.Reporting.dll
Telerik.Reporting.Design.dll
Telerik.ReportViewer.WebForms.dll
Telerik.Reporting.Processing.dll
Telerik.Reporting.Data.dll
In Web.config Files Add these Code
Comments