sql server reporting services:
Here is an example of a Jump to URL link I use. This causes Excel to come up
with the data in a separate window:
="javascript:void(window.open('" & Globals!ReportServerUrl &
"?/SomeFolder/SomeReport&ParamName=" & Parameters!ParamName.Value &
"&rs:Format=CSV&rc:Encoding=ASCII','_blank'))"
If you don't want to have it appear in a new window then do this in jump to
URL:
=Globals!ReportServerUrl & "?/SomeFolder/SomeReport&ParamName=" &
Parameters!ParamName.Value & "&rs:Format=CSV&rc:Encoding=ASCII"
This capability was introduced with RS2000 SP1
--
Bruce Loehle-Conger
MVP SQL Server Reporting Services
[quoted text, click to view] "Boa" <mugnaboa@gmail.com> wrote in message
news:1156498995.499936.169520@h48g2000cwc.googlegroups.com...
> Hi, i have a problem:
>
> - I need to open a report in a new page, from a report contained in a
> iFrame of a aspx page
>
> I tried a javascript window.open command in the "jump to URL" property.
> But:
>
> - If i run the report in Explorer, i click and the report is correctly
> open in a new page
> - If i run the report in the iFrame of the aspx page, i click but the
> report is wrongly open in the same page
>
> I tried a lot but i can't see the right way. I really need help.
>
> P.S. Sorry for my bad English Language
>