User1665250412 posted
I need to pass a dynamic parameter to my reporting service.
The parameter name is PCName
The processing mode is in Remote, I was able to pass the parameter to the Report if I log on to the Reporting Server manually, but I want to pass it programagically.
Here is a copy of my ASP code.
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<asp:ScriptManager id='scriptManager' runat='server' />
<rsweb:ReportViewer ID="ReportViewer1"
runat="server"
ProcessingMode="Remote"
Font-Names="Verdana"
Font-Size="8pt"
InteractiveDeviceInfos="(Collection)"
WaitMessageFont-Names="Verdana"
WaitMessageFont-Size="14pt"
Width="95%"
Height="99%" ShowDocumentMapButton="False"
ShowPromptAreaButton="False" Visible="true">
<ServerReport ReportPath="/Statistics"
ReportServerUrl="http://reports.ar.net/reportserver/" />
</rsweb:ReportViewer>