|
Is it possible to integrate SSRS reports to the webforms..an example will be enough to keep me moving.
Started by jazzrai on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Alternatively you....
Http right on your web form that will give people an interface for setting report parameters and getting the report.
Article which describes how to render report output to an aspx page in a particular file format.
|
|
Hi,
I am trying to make a case of using SSRS as an option for some great looking reports. Is there a place where somebody can point to? I am looking for some great looking fancy data driven reports built using SQL Server SSRS
Started by CodeToGlory on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
*Requires IE
YouTube Demonstration....
Have you looked at the Microsoft samples on codeplex? Here is a screenshot of one of the reports
Example sites:
Codeplex Site Site mentioned by Cory
Report Examples Examples by some guy of SSRS.
|
|
I have a series of reports served by SSRS. They are great and the users like them.
That being the case, upper management wants to throw a wrench in the works and serve the reports from the Sharepoint server.
Is there a realtively painless way to let users...
Started by Craig on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Since you're usingJust a suggestion - Search ....
Version of SSRS or Sharepoint you're using, but there have traditionally been both a Report Viewer in an IFRAME web part and point it to the Reports folder on your SSRS Server.
|
Ask your Facebook Friends
|
I have some machines that when accessing SSRS Reports show "Internet" or "Unknown Zone(Mixed) instead of "Local Intranet". Some user never report this problem, for others it appears consistent. These machines should be all setup the same. We access the...
Started by nojetlag on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Have you added....
Assuming it's internal, and assuming you have a proxy, then there should be no need going to the proxy for internal addresses .
In the IE connection settings do all of your machines ignore local proxy server for the address you mentioned .
|
|
Is there a way to enable the “ My Reports ” feature in SQL Server Reporting Services 2008 when I am using SQL Server 2008 Express edition with Advanced Services ?
As I am using Express edition, I cannot connect SQL Server Management Studio to Reporting...
Started by Andy Jones on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Reports" feature..
|
|
SSRS version is SQL 2005 x64 sp2 on Windows 2003 x64 sp2 and IIS 6 Clients run IE 6 on a mixture of Win2k sp4 and WinXP sp3 reports are accessed through the standard SSRS html viewer As the title suggests my issue is that, in SSRS reports which use toggle...
Started by Ed Harper on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Do you have the cumulative update for SP2 installed.
To the latest version of SSRS I haven't seen it again.
|
|
Hi,
Let's say i have 3 byte arrays, each representin a .xls file. How can i combine them into a single xls file with 3 sheets. The SSRS reports are very rich and include charts sp oledb is not an option.
Performance is not important so i could save them...
Started by Paul Creasey on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Using the OfficeWriter....
From byte arrays, but we also have SSRS integration that would allow you to create multi-sheet reports reports and then combined? SoftArtisans OfficeWriter can programmatically combine multiple spreadsheets directly.
|
|
So I'm working with SSRS (SQL Server 2005), which some of our applications use to generate downloads. The problem with it, though, is that the Reports website that is used to manage it seems to crash randomly. I haven't yet figured out a rhyme or reason...
Started by John Christensen on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I've noticed that ssrs up an instance of ssrs on your local machine (that you know no one will get on) and running your.
For a while, has to "recompile" and will take a few seconds before it'll show a page .
|
|
I have a requirement to be be able to embed scanned tiff images into some SSRS reports.
When I design a report in VS2005 and add an image control the tiff image displays perfectly however when I build it. I get the warning :
Warning 2 [rsInvalidMIMEType...
Started by John Nolan on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Response.ContentType = "image/png"; Response.Clear(); using (Bitmap bmp = new Bitmap(tifFilepath)) bmp.Save(Response... .
Assuming you're delivering the image file via IIS, use an ASP.NET page to change image formats and mime type to something that you can use .
|
|
My current project uses SSRS as the reporting engine. I have the report executing a text command with about 10 variables passed to it. I have been looking for a solution on how to unit test (acceptance or integration, whatever, just some automation) to...
Started by Steve Wright on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://reportserver/....
The only thing I can suggest is to find a tool that can compare XML and just get the report server to send an XML version of the report.
You might be using in the report (filtering, sorting, aggregation etc).
|