Reputation: 35605
If I force a report onto one page is it also possible to hide the following control?
Upvotes: 2
Views: 1445
Reputation: 3083
First Look at this article
You can hide the toolbar like this:
http://<Server Name>/reportserver?/Sales/YearlySalesSummary
&rs:Command=Render&rs:Format=HTML4.0&rc:Toolbar=false
The parameter you are looking for is that:
&rc:Toolbar=false
Edit - Hide only the Page navigation using report viewer control (Win Forms)
First download the report viewer control
Then follow these steps:
Next customize the report properties in the Form1_Load
method
private void Form1_Load(object sender, EventArgs e)
{
rpViewer.ShowPageNavigationControls = false;
this.rpViewer.RefreshReport();
}
The results should look like that:
Upvotes: 2