Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
chriskhan2000
Aged Yak Warrior
544 Posts |
Posted - 2005-02-11 : 11:47:27
|
I have deployed my reports to the ReportServer. My plan is to create a page that has url links to each report. How would I set it so that when they go to the report, the only thing that shows is the report? For now when they go there, they would see the Home|My Subscription|Help. |
|
jhermiz
3564 Posts |
Posted - 2005-02-11 : 13:19:10
|
quote: Originally posted by chriskhan2000 I have deployed my reports to the ReportServer. My plan is to create a page that has url links to each report. How would I set it so that when they go to the report, the only thing that shows is the report? For now when they go there, they would see the Home|My Subscription|Help.
Chris one of the selections in the export drop down is OWC (office web components). This translates to a URL when you run the report, so they ONLY get the report.So in your app just use that hyperlink to open the report only. Try it out, export the report to that format (I think it is called OWC) and then look at the address bar. Use that URL.In the future you can dynamically send parameters using that same url..go ahead try it out with all your reports. Works a treat for me.Jon Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]Imperfection living for perfection -- [url]http://jhermiz.blogspot.com/[/url] |
 |
|
chriskhan2000
Aged Yak Warrior
544 Posts |
Posted - 2005-02-11 : 15:45:25
|
Jon,FOr the HTMLOWC url, when I use that it adds in the parameter. Is there a way to go to the report without the parameter in the URL and have it not to try to generate the report first without the user entering the parameter?I guess what I'm aiming at is when you first click on the report from Report Manager. It takes you to a page with parameters. From there I want to exclude the menus that I stated from the earlier post. |
 |
|
chriskhan2000
Aged Yak Warrior
544 Posts |
Posted - 2005-02-11 : 15:48:44
|
Got it to work now.Went to the ReportServer page and then ran the reports from there.Thanks. |
 |
|
jhermiz
3564 Posts |
Posted - 2005-02-12 : 11:42:39
|
quote: Originally posted by chriskhan2000 Jon,FOr the HTMLOWC url, when I use that it adds in the parameter. Is there a way to go to the report without the parameter in the URL and have it not to try to generate the report first without the user entering the parameter?I guess what I'm aiming at is when you first click on the report from Report Manager. It takes you to a page with parameters. From there I want to exclude the menus that I stated from the earlier post.
You could of also taken out the parameters it added :). Keeping the web experience alive -- [url]http://www.web-impulse.com[/url]Imperfection living for perfection -- [url]http://jhermiz.blogspot.com/[/url] |
 |
|
|
|
|