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.

 All Forums
 Development Tools
 Reporting Services Development
 Hiding HTML viewer tool bar

Author  Topic 

AskSQLTeam
Ask SQLTeam Question

0 Posts

Posted - 2006-06-05 : 10:11:30
Durai writes "I am trying to access the report which I had deployed in the server using Internet explorer. I was trying to view only the report in full screen, by excluding the HTML viewer toolbar (which contains Properties, Subscriptions and Zooming options..etc).

For this I have tried by passing URL access parameters..like

http://lcs1/Reports/Pages/Report.aspx?ItemPath=/flag/Appi&rs:Command=Render&rs:Format=HTML4.0&rc:Toolbar=false

MSDN link:http://msdn2.microsoft.com/en-us/library/ms152835.aspx

also tried with Editing style sheet, which is used by
ReportServer like

.ToolbarFind
{
display: none;
}

.ToolbarExport
{
display: none;
}

MSDN link:http://msdn2.microsoft.com/en-us/library/ms345247.aspx

But even then browser is not at all responding to my efforts...Please help me to resolve this issue"
   

- Advertisement -