Tagged Questions
1
vote
0answers
5 views
reportviewer.getparameters retrieves SSRS wromg parameter dependencies
I'm using SSRS 2008R2 in an ASP.NET website and use the ReportViewer control to display it.
We have a report with 4 parametrs with the follwing dependencies betwwn them:
1. P2 + P3 depend on P1
2. P4 ...
1
vote
1answer
36 views
Generating report from rdlc xml string
I'm facing an issue when generating reports.
I should generate report dynamically using all data from database for it (source name and rdlc report that stores as xml string)
So I solved problem ...
0
votes
1answer
28 views
MVC4 & Azure Reporting Reports
I have an MVC 4 application and i also have some reports the are hosted on Azure Reporting services.
I know that the report viewer will not work directly in an MVC Razor page and have seen examples of ...
0
votes
0answers
54 views
.rdlc not appearing in googlechrome, blank
i am using the reporting services in visual studio 2012. The report is working find in IE and the report is shown fine. But when i browse the report in GoogleChrome, i get a blank view. The toolbar is ...
0
votes
0answers
26 views
Report SetParameters do not work
Here is my code:
ReportParameter reportStartDate = new ReportParameter();
reportStartDate.Name = "startDate";
reportStartDate.Values.Add("2013-05-12");
ReportParameter reportStopDate = new ...
0
votes
0answers
43 views
ASP.Net SSRS ReportViewer 502 Error - Possible Timeout?
I have an ASP.Net web page that uses the ReportViewer control to render SSRS reports. We are having an issue where reports that take longer than 30 seconds to render appear to hit some sort of ...
-1
votes
0answers
64 views
deploy a RDL file using rs.exe? [closed]
Assume that i am already having a sample.rdl file with me . i need to create ssrs report using that rdl file through programmatically or running some script files
1) Is it possible to do?
based on ...
0
votes
2answers
94 views
ReportViewer control returns blank page
I'm having problems with the standard ASP.NET ReportViewer control (v11, SQL 2012, VS 2012). This was previously working at some point, connecting to a remote SSRS server, but during the development ...
1
vote
0answers
106 views
Is ReportViewer 2012 compatible with SSRS Server 2005 for remote access?
While attempting to view a report in ReportViewer 2012 from SSRS 2005 in remote mode I am getting error: "Remote report processing requires Microsoft SQL Server 2008 Reporting Services or later."
Are ...
0
votes
3answers
118 views
web report viewer input string
For start :
I have used the ASP.NET Report Viewer in a user control. I have the following user control : (aspx)
<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, ...
0
votes
1answer
110 views
The request failed with HTTP status 401: Unauthorized
I have an ASP.NET website that uses the ReportViewer control. I'm using SQL server 2008 from reporting. The reporting services are on another machine on the local network and my asp.net web site is on ...
0
votes
1answer
512 views
Sorting and paging in SSRS report viewer in MVC3 application not working
I am integrating SSRS reports in my MVC application using an ascx control called with @Html.Partial from my “ReportViewer” view.
In the ascx I have the SSRS ReportViewer control, and in the page load ...
0
votes
0answers
66 views
Report viewer doesn't display data (display:none) for wide reports when AsyncRendering=true
I'm using report viewer 8.0.0.0. My report displays fine on report server.
Fiddler captures 2 responses, one from the report server and one from localhost. The localhost response is from url like:
...
0
votes
2answers
184 views
Dynamically removing table from rdlc report
I'm creating an SSRS report in VS2012.
Under Tablix Properties I can show or hide a table using an expression which uses a boolean parameter; but this leaves a gap in the report.
Is there a way I ...
0
votes
1answer
80 views
Could not get the ReportViewer dll's in GAC
I am trying to load ReportViewer dll's into the GAC. I downloaded the ReportViewer.exe from Microsoft's download website, Unblocked it and ran it as administrator. The installation of package was ...
0
votes
1answer
683 views
How can i install ReportViewer 2012 in Visual Studio 2010
I was using reportviewer 2010 control in visual studio 2010 but i need to start using reportviewer 2012. How can I use the new ASP.NET webforms ReportViewer 2012 control in Visual Studio 2010 (without ...
0
votes
1answer
38 views
How to get detailed errors from Reporting Services Authentication Extension
I'm developing Authentication Extension for SQL Server Reporting Services 2008 R2. It works for accessing report manager or report service using browser but trying to open a report in aspx page using ...
0
votes
2answers
334 views
SSRS - Disabling export options (eg. PDF) for individual reports
We have many reports which we use on the website. While exporting some reports as PDF, the file size gets huge and the server crashes due to load. So it would be great if I can disable export to PDF ...
1
vote
0answers
105 views
Horizontal table in Report Viewer
I require a table in report viewer to display a list of items pulled from the data source in a horizontal table.
The data source simply contains a list of strings contained in one SQL column.
The ...
0
votes
1answer
83 views
Adding a default message to ReportViewer
I have some reports with 2 tables and a chart in each. There are also several textboxes used for headings, a header and a footer.
I already know that if I want to set a custom message when no data is ...
0
votes
1answer
45 views
Displaying distinct grouped table in report
I have a report with a basic table listing each row from a dataset.
I want to add a grouped summary table (by product and location) at the top:
PRODUCT LOCATION QUANTITY
Widget1 br1 10
...
0
votes
2answers
139 views
Changing reportviewer values in code
I have an integer value stored in my database representing a document status.
I want to write a report that shows the status in one of the columns.
However, I don't want to show the raw integer ...
0
votes
0answers
148 views
System.Runtime.Serialization.SerializationException Intermittently Occurs Within ReportViewer Control in ASP.NET
Due to a vendor change, we had to move our production deployment to a new environment, and this was coincided with a lot of upgrades, e.g. Windows Server 2003 to 2012 and SQL Server 2005 to 2012. We ...
1
vote
1answer
50 views
Report Viewer with httpOnlyCookies
Is there a way for me to have <httpCookies httpOnlyCookies="true" requireSSL="true" /> in my web.config and still be able to user Report Viewer?
From what I can Google/Bing this doesn't seem ...
0
votes
0answers
127 views
SSRS 2008 R2 Databar
I have a ASP.NET Web Application that has a ReportViewer Control using a Remote SSRS 2008 R2 Server. I have several reports that use Data-bars and Spark-lines. I was having performance issues when the ...
0
votes
1answer
254 views
Unable to bind datasource to reportViewer
I have a C# application that uses a reportViewer. I want to add 3 reports in a single reportViewer. Here is the code for a single report:
ReportDataSource rds = new ReportDataSource();
...
6
votes
3answers
2k views
How do I render a remote ReportViewer aspx page in MVC4?
I'm working on an MVC4 application that needs to render a remote report from SSRS using the ReportViewer. With help from this forum, I've managed to get the page to render under MVC, but callbacks ...
3
votes
0answers
241 views
Autofit row height in reporting services 2012 (SSRS)
I'm creating reports in reporting services 2012 and i want my report rows to be autofit as my data is dynamically created and it differs in height from row to row.Now i have tried to give the row ...
1
vote
0answers
91 views
ReportViewer WebForms Function SetDisplayMode
I'm using ReportViewer.WebForms and needed something like function setdisplaymode from ReportViewer.WinForms.
Example from WinForms:
...
0
votes
1answer
93 views
Web reporting library which is not SQL ReportViewer
I deal with ReportViewer and RDLC since 2005.
Ever since that I am failing always in new troubles and problems, It most time working okay but also It sometime give me so much headache.
Common ...
1
vote
1answer
101 views
Parameters in Report Viewer control in Mozilla are disabled
I am desperate.
I have web app that can call reports from report server. On one report, there is six parameters, where the last two are datetime parameter. Some parameters are dependable of other, ...
0
votes
1answer
139 views
How to display a CSV list of data in a column of an RDLC file
I have a report embedded in a web application that works fine but I need to make a tweak to it. Right now the report basically will dump all the rows from a view, I have some filters set up but I ...
0
votes
1answer
118 views
Wait for reportviewer to render before continuing
I am trying to create some SSRS reports inside a loop, the report should render onscreen, then save to a file, then update a list box to say it has been saved.
I have managed to get the reports ...
0
votes
1answer
374 views
Accessing dynamically-created controls inside repeater during postback
I have an ASP.NET page with a ReportViewer control that displays an SSRS report specified by a GET parameter. I am hiding the ParameterHeader of the ReportViewer and displaying the parameters myself ...
0
votes
1answer
356 views
ASP Report Viewer 11 Rendering issue
I'm trying to display a couple of our SSRS reports in an ASP webapp we'll use internally, I opted to go with local reports over remote, recreated one of them and put together a quick ASP forms site ...
1
vote
0answers
590 views
SSRS Report Viewer: request failed with HTTP status 401
I've spent a lot time trying to figure this one out, but without luck - so I will try to post the question here.
I am running 2 ASP.NET websites on the same server. Both websites are running on IIS ...
7
votes
2answers
1k views
Change SSRS data source of report programmatically in server side
Today, for each customer, we deploy same SSRS reports folder and data source folder.
The difference between these folders are the name of each folder and the connection string of the data source.
We ...
0
votes
1answer
273 views
what all is required in the method calls to load an rdl into asp.net project via c#
I am trying to figure out the steps to call/load a rdl file into an existing asp.net application. I have the rdl files uploaded to an ssrs server and I am developing a custom ui that utilizes the ssrs ...
1
vote
0answers
230 views
SSRS report viewer log on failed [closed]
I have set up a web based report viewer using the SSRS reportviewer control (sql server 2008 r2) including the ability to specify credentials.
When I comment out the bit that sets the credentials and ...
2
votes
1answer
92 views
Checking the number datasources in an ssrs serverreport, without using GetDataSources.count()
I am using ASP.net Reportviewer to display SSRS reports on my website.
I would like to know the number of Datasources a report has.
I am currently using:
int noOfReports = ...
2
votes
2answers
1k views
The attempt to connect to the report server failed - Setting URL and Path in ASP.NET?
I'm trying to connect to a Report (rdlc file) using ASP.NET Web Applications. I'm working with VS2010 and the Report Server is version 2008.
I have the following URL to the report which works fine:
...
0
votes
1answer
23 views
select cell in print layout
I want in Print Layout Mode of my report, by clicking a cell in a Table (Tablix), the border color for that cell changes, and by clicking another cell, its border color changes and the other one's ...
2
votes
1answer
715 views
Reporting Services chart text is blurry when rendered in ReportViewer control on web page
Issue
We are rendering a bar chart on a web page using a Reporting Services report and the ReportViewer control. Sometimes the text on the chart is sharp:
But most of the time, the text on the ...
1
vote
1answer
180 views
How can I get only data from reporting services without using their controls?
The architecture of my project is 3 tiers, basically :
(1)ASP.NET MVC --> (2) Reporting Service --> (3) Database using store procedures
In layer (2), I used Report Viewer control in order to support ...
0
votes
2answers
285 views
Report Viewer Freezing When Processing
I am currently working on a project where remote users will have their own instance of an application (developed in Visual Studio 2010) and a copy of the database which is synchronised with a central ...
1
vote
0answers
121 views
ReportViewer control bug in IE9 regarding multiple value paramater
This is what the microsoft sample *Employee_Sales_Summary_2008R2* looks like in IE9 using WebForms ReportViewer 2010:
If I change IE9 to emulate IE7 or IE8, it looks like:
This particular ...
0
votes
1answer
159 views
How to rename dynamically an exported report in code or with reporting services itself?
I have tried to Google my problem, but I have found nothing about my problem.
I would like to rename dynamically my reports from Reporting Services when I export them using the ReportViewer. ...
0
votes
1answer
224 views
Running a LocalReport with a remote SSRS DataSource in ASP.NET ReportViewer control
I'll try to describe what exactly I am doing:
I am trying to incorporate a ReportViewer control into my ASP.NET page, that would enable the user to view pre-defined and useruploaded, RDL reports, set ...
5
votes
1answer
418 views
What is the easiest way to make a “Banded” Report in RDLC?
Okay, I may have been googling for the wrong search terms but I can't find how to make a MS-Access style banded report with RDLC (that is the crippled report designer in Visual Studio 2010, not BIDS) ...
0
votes
1answer
217 views
rendering reportviewer as PDf affects the display
After performing "serverreport.render" in order to print the report in PDF format, the Interactive sort does not work on the WebPage.
Below is my code.
private void Print()
{
HttpContext cont = ...

