reportviewer

Microsoft ReportViewer: Session Expired Errors

你。 提交于 2019-12-03 09:27:48
问题 The project is ASP.NET 2.0, I have never been able to reproduce this myself, but I get emails informing me it happens to clients many times a week, often a few times in a row. Here is the full error: Exception Details: Microsoft.Reporting.WebForms.AspNetSessionExpiredException: ASP.NET session has expired Stack Trace: [AspNetSessionExpiredException: ASP.NET session has expired] at Microsoft.Reporting.WebForms.ReportDataOperation..ctor() at Microsoft.Reporting.WebForms.HttpHandler.GetHandler()

the application requires that assembly microsoft.reportviewer.processingObjectModel version 11.0.0.0 be installed in the global assembly cache first

二次信任 提交于 2019-12-03 07:01:01
I have a small windows forms application created in Visual Studio 2012 that uses ReportViewer version 11.0.0.0. The application target framework is .NET 4.0 and its deployment method is ClickOnce On my PC it installs but on client machines, intallation fails with error the application requires that assembly microsoft.reportviewer.processingObjectModel version 11.0.0.0 be installed in the global assembly cache first. On the client machines, i have installed .NET 4.0 ReportViewer 2010 Microsoft Report Viewer 2012 Runtime CTP SQLSYSCLRTYPES.msi in the project application files settings, i have

Empty pages in RDLC-Report

会有一股神秘感。 提交于 2019-12-03 06:28:55
问题 I have a rdlc report that conains a tablix, nothing other. The Tablix expands in horizontal direction to show days and in the vertical direction to show groups. The tablix works as expected, as long as I set the width of the content area equal to the width of the tablix. If I expand the content size to its fixed size (approximately PageWidth-PageBorders) and run the report, every second page is an empty page. However the tablix only uses one page. Every odd page is absolutely empty. It seems

Can one use Reportviewer Control in ASP.net Core

情到浓时终转凉″ 提交于 2019-12-03 06:26:10
I want to make use of the Reporting Services ReportViewer control in an ASP.NET Core MVC project. The solution as proposed in other answers it to add a webform to the project. However since ASP.NET Core doesn't support webforms I cannot add the control to a webform. Is there any other workaround that might possibly assist me in using the ReportViewer control in an ASP.NET Core Web application? Update 2019 I have ReportViewer working on ASP.NET Core on Windows, and most features (not PDF and Images/PowerPoint) also work on ASP.NET Core on Linux. There's still some bugs to weed out, though. You

Report Viewer Web Control Version 10 Gives Error Despite Set Up Correctly

依然范特西╮ 提交于 2019-12-03 06:02:08
Reports are deployed and working, verified in Report Manager. My application is an MVC2 app with my report on its own aspx page. This page worked with version 8 of the report viewer control, but we moved to new servers, upgraded sql server, and are trying to update our website to match. The servers are Windows Server 2008 with IIS 7.5. I am testing in both chrome and IE 9. Despite my best efforts, I still get this error: Report Viewer Configuration Error The Report Viewer Web Control HTTP Handler has not been registered in the application's web.config file. Add <add verb="*" path="Reserved

ReportViewer timeouts in spite of timeout settings

ⅰ亾dé卋堺 提交于 2019-12-03 04:56:39
I have an ASP.NET app that exposes a Microsoft ReportViewer (actually an MVC3 app with one WebForm hosting the ReportViewer). When running large reports, a timeout occurs causing the request to stop and a blank page to show in place of a report. Yet the following timeout parameters are set programmatically: Viewer.ServerReport.Timeout = Configuration.ReportViewerTimeout; ScriptManager.AsyncPostBackTimeout = Configuration.ReportViewerAjaxTimeout; The respective values are -1 and 0 which as per documentation are interpreted as no timeout. I also tried large values, it made no difference. After

ReportViewer control loading indicator?

三世轮回 提交于 2019-12-03 04:38:37
问题 Is it possible to change the image (the green spinning thing) of the ReportViewer control? At the moment I am hiding it and overlapping a progress bar (this is WinForms not the ASP Control)... Seems a bit long winded? Thanks :) 回答1: Well, you gave me a challenge with this one my friend. But I figured out how to do this. Here is the code that I used to pull this off: Private Sub CustomizeRV(ByVal ctrl As Control) For Each c As Control In ctrl.Controls If TypeOf c Is PictureBox Then Dim pb As

ReportViewer 2010 fails to evaluate expressions

和自甴很熟 提交于 2019-12-03 03:35:11
My project is ASP.Net WebForms on 4.0 framework, using the ReportViewer 10, local RDLC reports rendered using Local processing mode. My problem is that many of the expressions in my report are not evaluating. For example, I have a textbox in the footer of the report with the simple expression of =Globals!PageNumber - but when the report runs, i just get #Error in that field. I get a similar #Error just doing a ToString on one of my fields - =Fields!MyBooleanField.Value.ToString() . Also in my footer, =DateTime.Now DOES work, while =Globals!ExecutionTime does NOT work. This makes no sense to me

Microsoft ReportViewer: Session Expired Errors

*爱你&永不变心* 提交于 2019-12-03 00:09:37
The project is ASP.NET 2.0, I have never been able to reproduce this myself, but I get emails informing me it happens to clients many times a week, often a few times in a row. Here is the full error: Exception Details: Microsoft.Reporting.WebForms.AspNetSessionExpiredException: ASP.NET session has expired Stack Trace: [AspNetSessionExpiredException: ASP.NET session has expired] at Microsoft.Reporting.WebForms.ReportDataOperation..ctor() at Microsoft.Reporting.WebForms.HttpHandler.GetHandler() at Microsoft.Reporting.WebForms.HttpHandler.ProcessRequest(HttpContext context) at System.Web

ReportViewer to PDF inside div/image/object

隐身守侯 提交于 2019-12-02 21:31:24
问题 Been searching for the past couple of days and haven't been able to find what I'm looking for, hopefully I haven't missed it. I have an ASP.NET (4.0) site that I'm putting together to retrieve payroll information. Currently I'm using the reportviewer, but because of cross-browser support it doesn't work 100%. I already have it set up to automatically render the RV into a PDF, turning it into bytes. I have code to A) Open the PDF as a standalone document B) Open the PDF in a new window What I