digitallyskilled
IS-IT--Management
Does anyone know how to show a report services report in ASP.NET without any of the toolbars. I have a bar graph that I want to display on a web page but I don't want the navigation bars parameters etc to show up. However I still need to be able to pass in a parameter.
--------------------------
This shows me the report with the parameter with the parameter and the navigation bar coming from the report server
string popupScript = "<script language='javascript'>" + "window.open(' + "</script>";
--------------------------
--------------------------
This sends me to a report that is generated using the report viewer web control
string popupScript = "<script language='javascript'>" + "window.open('Reportviewer.aspx');" + "</script>";
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Height="442px" ProcessingMode="Remote"
Width="704px" ShowDocumentMapButton="False" ShowExportControls="False" ShowFindControls="False" ShowPageNavigationControls="False" ShowPrintButton="False" ShowRefreshButton="False" ShowZoomControl="False" ToolBarItemPressedBorderStyle="None" ToolBarItemPressedBorderWidth="0px" InternalBorderStyle="NotSet" InternalBorderWidth="0px" ShowPromptAreaButton="False" ShowCredentialPrompts="False" ShowToolBar="False" ShowParameterPrompts="False">
<ServerReport ReportPath="/SampleProject/RevenuePerSource" />
</rsweb:ReportViewer>
--------------------------
--------------------------
This shows me the report with the parameter with the parameter and the navigation bar coming from the report server
string popupScript = "<script language='javascript'>" + "window.open(' + "</script>";
--------------------------
--------------------------
This sends me to a report that is generated using the report viewer web control
string popupScript = "<script language='javascript'>" + "window.open('Reportviewer.aspx');" + "</script>";
<rsweb:ReportViewer ID="ReportViewer1" runat="server" Height="442px" ProcessingMode="Remote"
Width="704px" ShowDocumentMapButton="False" ShowExportControls="False" ShowFindControls="False" ShowPageNavigationControls="False" ShowPrintButton="False" ShowRefreshButton="False" ShowZoomControl="False" ToolBarItemPressedBorderStyle="None" ToolBarItemPressedBorderWidth="0px" InternalBorderStyle="NotSet" InternalBorderWidth="0px" ShowPromptAreaButton="False" ShowCredentialPrompts="False" ShowToolBar="False" ShowParameterPrompts="False">
<ServerReport ReportPath="/SampleProject/RevenuePerSource" />
</rsweb:ReportViewer>
--------------------------