Install Microsoft Reportviewer Webforms 9.0.0.0

Posted on  by 

Web.Config Convert WebFroms verison 8.0.0.0 to WebFroms verison 9.0.0.0 to Solution of 1) Close VS 2) Delete all of Temporary Asp files on:(Window install path ) C: WINDOWS Microsoft.NET Framework v2.0.50727 Temporary ASP.NET Files. Hi winkimjr2, Thank you for posting here. According to your question, I find Microsoft.ReportViewer.Common, but it only have one version 10.0.40219.1.

-->

The Report Viewer controls can be used to integrate Reporting Services RDL reports into WebForms and WinForms apps. For detailed information about recent updates see the changelog.

Add the Report Viewer control to a new web project

  1. Create a new ASP.NET Empty Web Site or open an existing ASP.NET project.

    You can use .NET Framework 4.6 or any newer version.

  2. Install the Report Viewer control NuGet package via the NuGet package manager console.

  3. Add a new .aspx page to the project and register the Report Viewer control assembly for use within the page.

  4. Add a ScriptManagerControl to the page.

  5. Add the Report Viewer control to the page. The snippet below can be updated to reference a report hosted on a remote report server.

The final page should look like the following.

Update an existing project to use the Report Viewer control

Make sure to update any assembly references to version 15.0.0.0, including the project's web.config and all .aspx pages that reference the viewer control.

Sample web.config changes

Sample .aspx

Add the Report Viewer control to a new Windows Forms project

  1. Create a new Windows Forms Application or open an existing project.

    You can use .NET Framework 4.6 or any newer version.

  2. Install the Report Viewer control NuGet package via the NuGet package manager console.

  3. Add a new control from code or add the control to the toolbox.

How to set 100% height on the Report Viewer control

Microsoft report viewer 9.0.0.0 download

Install Microsoft.reportviewer.webforms Version=11.0.0.0

If setting the height of the viewer control to 100% the parent element is required to have a defined height, or all ancestors are required to have percentage heights.

Set the height of all the ancestors to 100%

Set the parent's height attribute

For more information about viewport percentage lengths, see Viewport-percentage lengths.

Install Microsoft Reportviewer Webforms 9.0.0.0 Free

Add the control to Visual Studio toolbar

The Report Viewer Control is now shipped as a NuGet package and no longer shows in the Visual Studio toolbox by default. You can add the control to the toolbox manually.

Install Microsoft Reportviewer Webforms 9.0.0.0
  1. Install the NuGet package for either the WinForms or WebForms as mentioned above.

  2. Remove the Report Viewer Control that is listed in the toolbox.

  3. Right-click in anywhere in the toolbox and then select Choose Items....

  4. On the .NET Framework Components, select Browse.

  5. Select the Microsoft.ReportViewer.WinForms.dll or Microsoft.ReportViewer.WebForms.dll from the NuGet package you installed.

    Note

    The NuGet package will be installed in the solution directory of your project. The path to the dll will be similar to the following: {Solution Directory}packagesMicrosoft.ReportingServices.ReportViewerControl.Winforms.{version}libnet40 or {Solution Directory}packagesMicrosoft.ReportingServices.ReportViewerControl.WebForms.{version}libnet40.

  6. The new control should display within the toolbox. You can then move it to another tab within the toolbox if you wish.

Common issues

The viewer control is designed for modern browsers. The control may not work as expected if the browser renders the page using IE compatibility mode. Intranet sites may require a meta tag to override default browser behavior.

Install microsoft reportviewer webforms 9.0.0.0 download

NuGet.org pages

Here are links to articles on the NuGet.org site about the WebForm and WinForm versions of the Report Viewer control:

  • Microsoft.ReportingServices.ReportViewerControl.WebFormshttps://www.nuget.org/packages/Microsoft.ReportingServices.ReportViewerControl.WebForms/
  • Microsoft.ReportingServices.ReportViewerControl.Winformshttps://www.nuget.org/packages/Microsoft.ReportingServices.ReportViewerControl.WinForms/

Forum feedback

Let the team know about issues on the Reporting Services forums.

Install Microsoft Reportviewer Web Forms 9.0.0.0

See also

When I was running a Report I was getting the following Error.
An error occurred during local report processing.
The definition of the report 'Main Report' is invalid.
The report definition is not valid. Details: The report definition has an invalid target namespace 'http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition' which cannot be upgraded.
Actually the report was developed in VS 2008 and now, I am trying to access the report in VS2010 then I was getting this Error.

First go to web.config and modified the following lines.

As follows.
And click on Ok button.
<assemblies>
<addassembly='Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A'/>

<addverb='*'
'Microsoft.Reporting.WebForms.HttpHandler,
Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a' />

<handlers>

Install Microsoft Reportviewer Webforms 9.0.0.0 2019

name='ReportViewerWebControlHandler'preCondition='integratedMode'
verb='*'path='Reserved.ReportViewerWebControl.axd'
Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral,
</handlers>

Install Microsoft Reportviewer Webforms 9.0.0.0 Mac


Install
And go to the Report page and modified the following lines of code.
<%--<%@ Register Assembly='Microsoft.ReportViewer.WebForms, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' Namespace='Microsoft.Reporting.WebForms' TagPrefix='rsweb' %>--%>
<%@RegisterAssembly='Microsoft.ReportViewer.WebForms, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
Namespace='Microsoft.Reporting.WebForms'TagPrefix='rsweb'%>


Coments are closed