Showing posts with label viewer. Show all posts
Showing posts with label viewer. Show all posts

Wednesday, March 28, 2012

Is it possible to launch a report rendered in excel or pdf instead of report viewer?

On my reporting services website, I would like to browse to a report,
click on it and have it render to excel or pdf by instead of report
viewer. Is this possible? I know that I can create rs scripts that run
a report and render to excel, but would like to users to experience
this on the web if possible. I couldn't find this option.you can try to send the format you want in the URL:
http://localhost/......&rs:Format=Excel
"steve" <stevensherman@.comcast.net> wrote in message
news:1165705966.309429.275880@.16g2000cwy.googlegroups.com...
> On my reporting services website, I would like to browse to a report,
> click on it and have it render to excel or pdf by instead of report
> viewer. Is this possible? I know that I can create rs scripts that run
> a report and render to excel, but would like to users to experience
> this on the web if possible. I couldn't find this option.
>|||Putting the format in the url works nicely. Thanks for the reply - that
helps. I was hoping that the report manager would have a configuration
setting for a report that would indicate how to render it.
Jeje wrote:
> you can try to send the format you want in the URL:
> http://localhost/......&rs:Format=Excel
>
> "steve" <stevensherman@.comcast.net> wrote in message
> news:1165705966.309429.275880@.16g2000cwy.googlegroups.com...
> > On my reporting services website, I would like to browse to a report,
> > click on it and have it render to excel or pdf by instead of report
> > viewer. Is this possible? I know that I can create rs scripts that run
> > a report and render to excel, but would like to users to experience
> > this on the web if possible. I couldn't find this option.
> >|||I'm not sure, maybe you'll found in the config files of your reporting
services installation the default rendering format.
I'm sure there is a list of authorized formats, so I presume there is a
default rendering option.
"steve" <stevensherman@.comcast.net> wrote in message
news:1165768599.615241.90010@.j44g2000cwa.googlegroups.com...
> Putting the format in the url works nicely. Thanks for the reply - that
> helps. I was hoping that the report manager would have a configuration
> setting for a report that would indicate how to render it.
>
> Jeje wrote:
>> you can try to send the format you want in the URL:
>> http://localhost/......&rs:Format=Excel
>>
>> "steve" <stevensherman@.comcast.net> wrote in message
>> news:1165705966.309429.275880@.16g2000cwy.googlegroups.com...
>> > On my reporting services website, I would like to browse to a report,
>> > click on it and have it render to excel or pdf by instead of report
>> > viewer. Is this possible? I know that I can create rs scripts that run
>> > a report and render to excel, but would like to users to experience
>> > this on the web if possible. I couldn't find this option.
>> >
>|||Report manager is not configurable that way. You have to create your own
portal if you want to do that. I recommend against doing this. HTML is much
much faster and having all your reports default to PDF is just not a good
idea.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"steve" <stevensherman@.comcast.net> wrote in message
news:1165768599.615241.90010@.j44g2000cwa.googlegroups.com...
> Putting the format in the url works nicely. Thanks for the reply - that
> helps. I was hoping that the report manager would have a configuration
> setting for a report that would indicate how to render it.
>
> Jeje wrote:
>> you can try to send the format you want in the URL:
>> http://localhost/......&rs:Format=Excel
>>
>> "steve" <stevensherman@.comcast.net> wrote in message
>> news:1165705966.309429.275880@.16g2000cwy.googlegroups.com...
>> > On my reporting services website, I would like to browse to a report,
>> > click on it and have it render to excel or pdf by instead of report
>> > viewer. Is this possible? I know that I can create rs scripts that run
>> > a report and render to excel, but would like to users to experience
>> > this on the web if possible. I couldn't find this option.
>> >
>sql

Is it possible to know whether report is still executing in report viewer? (Web Forms)

Hi All,

I have a Report Viewer and a Exit button in Web Form. Untill the report is processed i don't want to enable the button.

so Is it possible to know whether report is still executing in report viewer ?

I am using Remote Mode.

Any help will be appreciated.

Thanks

Akash

YOu can use the asynchronous methods for rendering the report, if the report did not raise the event of finishing you can be sure that the report is already running.

Jens K. Suessmeyer.

http://www.sqlserver2005.de

|||

I am using HistoryID to generate the report so i can't use the asynchronous thing.

Below are the lines which are generating the report.

ReportViewer1.ServerReport.ReportServerUrl = new Uri(ConfigurationManager.AppSettings["ReportServerPath"].ToString());

ReportViewer1.ShowParameterPrompts = false;

ReportViewer1.ServerReport.HistoryId = strHistoryID; -- Assigning HistoryID

ReportViewer1.ServerReport.ReportPath = strReportPath;

ReportViewer1.ServerReport.Refresh();

Report is rendering asynchronously from the rest of the web page.(i.e. Report Viewer AsyncRendering attribute is set to true)

Friday, March 9, 2012

Is it necessay to publish report to Sql Server in VS 2005

We can design .rdlc in VS2005, and veiw the report in Report Viewer.
Is it necessay to publish report to Sql Server in VS 2005?With the two controls shipping with VS 2005 (my understanding is that the
controls come with Visual Studio) what you want it possible. These controls
either work with the Reporting Services or can work in local mode. In local
mode you give it the report and the data, no server is needed at all.
VS 2005 will have both a winform and webform control.
Note that these controls do not render to as many formats.
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"ad" <ad@.wfes.tcc.edu.tw> wrote in message
news:eNLpm%23zXFHA.584@.TK2MSFTNGP15.phx.gbl...
> We can design .rdlc in VS2005, and veiw the report in Report Viewer.
> Is it necessay to publish report to Sql Server in VS 2005?
>|||It seem that it can render as Execl.
I can not find any article about these controls in MSDN.
Have you any article about it?
"Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> ¼¶¼g©ó¶l¥ó·s»D
:OkNNzb5XFHA.2768@.tk2msftngp13.phx.gbl...
> With the two controls shipping with VS 2005 (my understanding is that the
> controls come with Visual Studio) what you want it possible. These
controls
> either work with the Reporting Services or can work in local mode. In
local
> mode you give it the report and the data, no server is needed at all.
> VS 2005 will have both a winform and webform control.
> Note that these controls do not render to as many formats.
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
>
> "ad" <ad@.wfes.tcc.edu.tw> wrote in message
> news:eNLpm%23zXFHA.584@.TK2MSFTNGP15.phx.gbl...
> > We can design .rdlc in VS2005, and veiw the report in Report Viewer.
> >
> > Is it necessay to publish report to Sql Server in VS 2005?
> >
> >
>|||Here is something worth reading (I haven't yet but the other is the other RS
MVP):
______________________________
"Teo Lachev [MVP]" <teo.lachev@.nospam.prologika.com> wrote in message
news:<ulB#O9aVFHA.1384@.TK2MSFTNGP09.phx.gbl>...
Just a quick note to let you know about the availability of my article
(http://www.devx.com/dbzone/Article/28047) about ad-hoc reporting with RS
2005. It explains the major components of Microsoft Reporting Services'
ad-hoc architecture and semantic model, and walks you through an end-to-end
example that demonstrates how to author, manage, and deliver ad-hoc reports.
Teo Lachev, MVP [SQL Server], MCSD, MCT
Author: "Microsoft Reporting Services in Action"
_____________________________________
Bruce Loehle-Conger
MVP SQL Server Reporting Services
"ad" <ad@.wfes.tcc.edu.tw> wrote in message
news:Our8138XFHA.3528@.TK2MSFTNGP12.phx.gbl...
> It seem that it can render as Execl.
> I can not find any article about these controls in MSDN.
> Have you any article about it?
>
> "Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> ¼¶¼g©ó¶l¥ó·s»D
> :OkNNzb5XFHA.2768@.tk2msftngp13.phx.gbl...
>> With the two controls shipping with VS 2005 (my understanding is that the
>> controls come with Visual Studio) what you want it possible. These
> controls
>> either work with the Reporting Services or can work in local mode. In
> local
>> mode you give it the report and the data, no server is needed at all.
>> VS 2005 will have both a winform and webform control.
>> Note that these controls do not render to as many formats.
>>
>> --
>> Bruce Loehle-Conger
>> MVP SQL Server Reporting Services
>>
>> "ad" <ad@.wfes.tcc.edu.tw> wrote in message
>> news:eNLpm%23zXFHA.584@.TK2MSFTNGP15.phx.gbl...
>> > We can design .rdlc in VS2005, and veiw the report in Report Viewer.
>> >
>> > Is it necessay to publish report to Sql Server in VS 2005?
>> >
>> >
>>
>|||Thank, but the article in (http://www.devx.com/dbzone/Article/28047) is not
local mode.
Have there articles about report in local mode?
But the
"Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> ¼¶¼g©ó¶l¥ó·s»D
:#ZFMCe#XFHA.3164@.TK2MSFTNGP12.phx.gbl...
> Here is something worth reading (I haven't yet but the other is the other
RS
> MVP):
> ______________________________
> "Teo Lachev [MVP]" <teo.lachev@.nospam.prologika.com> wrote in message
> news:<ulB#O9aVFHA.1384@.TK2MSFTNGP09.phx.gbl>...
> Just a quick note to let you know about the availability of my article
> (http://www.devx.com/dbzone/Article/28047) about ad-hoc reporting with RS
> 2005. It explains the major components of Microsoft Reporting Services'
> ad-hoc architecture and semantic model, and walks you through an
end-to-end
> example that demonstrates how to author, manage, and deliver ad-hoc
reports.
> Teo Lachev, MVP [SQL Server], MCSD, MCT
> Author: "Microsoft Reporting Services in Action"
> _____________________________________
>
> --
> Bruce Loehle-Conger
> MVP SQL Server Reporting Services
> "ad" <ad@.wfes.tcc.edu.tw> wrote in message
> news:Our8138XFHA.3528@.TK2MSFTNGP12.phx.gbl...
> > It seem that it can render as Execl.
> > I can not find any article about these controls in MSDN.
> > Have you any article about it?
> >
> >
> > "Bruce L-C [MVP]" <bruce_lcNOSPAM@.hotmail.com> ¼¶¼g©ó¶l¥ó·s»D
> > :OkNNzb5XFHA.2768@.tk2msftngp13.phx.gbl...
> >> With the two controls shipping with VS 2005 (my understanding is that
the
> >> controls come with Visual Studio) what you want it possible. These
> > controls
> >> either work with the Reporting Services or can work in local mode. In
> > local
> >> mode you give it the report and the data, no server is needed at all.
> >>
> >> VS 2005 will have both a winform and webform control.
> >>
> >> Note that these controls do not render to as many formats.
> >>
> >>
> >> --
> >> Bruce Loehle-Conger
> >> MVP SQL Server Reporting Services
> >>
> >>
> >> "ad" <ad@.wfes.tcc.edu.tw> wrote in message
> >> news:eNLpm%23zXFHA.584@.TK2MSFTNGP15.phx.gbl...
> >> > We can design .rdlc in VS2005, and veiw the report in Report Viewer.
> >> >
> >> > Is it necessay to publish report to Sql Server in VS 2005?
> >> >
> >> >
> >>
> >>
> >
> >
>