Click here to Skip to main content
15,891,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi Experts.

I have created a localReort (.rdlc) in my asp .net application. and bind it with my custom ado DataSet. using following code.
C#
ReportViewer1.ProcessingMode = ProcessingMode.Local;
            ReportViewer1.LocalReport.EnableExternalImages = false;
            ReportViewer1.LocalReport.EnableHyperlinks = false;
            ReportViewer1.Visible = true;
            ReportViewer1.ShowBackButton = true;
            ReportViewer1.ShowDocumentMapButton = true;
            ReportViewer1.ShowExportControls = true;
            ReportViewer1.ShowFindControls = true;
            ReportViewer1.ShowParameterPrompts = false;
            ReportViewer1.ShowReportBody = true;
            ReportViewer1.SizeToReportContent = true;
            ReportViewer1.ShowToolBar = true;
            ReportViewer1.ShowZoomControl = true;
            ReportViewer1.DocumentMapCollapsed = true;

            
            this.ReportViewer1.LocalReport.ReportPath = Server.MapPath("Report1.rdlc");
            this.ReportViewer1.LocalReport.DataSources.Clear();
            ReportDataSource _rds = new ReportDataSource("DataSet1", _ds.Tables[0]);
            this.ReportViewer1.LocalReport.DataSources.Add(_rds);
            this.ReportViewer1.LocalReport.Refresh();


As I hit F5 report works fine. When I publish website on iis, Report viewer shows blank. and no data showed there. and even no exception is thrown.

Can any one help me. This is urgent.
Posted

1 solution

I found answer
here[here]

CSS
Go to IIS7 Manager, find the virtual directory for our application
Click on 'Handler Mappings'
Click on 'Add managed Handler'
Fill in these details:

* Request path: Reserved.ReportViewerWebControl.axd
* Type: Microsoft.Reporting.WebForms.HttpHandler, Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
* Name: Reserved.ReportViewerWebControl.axd
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900