need the sample of asp.net call the report | SQL Server Performance Forums

SQL Server Performance Forum – Threads Archive

need the sample of asp.net call the report

I am very fresh in reporting services development in asp.net.
I dont know how to start this.
Hope that somebody able to provide some simple program with parameter passing and etc.
Thanks a lot if u able to provide help.
Thanks again!!!!!

Hi, code in c#, to output a report in PDF format: StringBuilder sURL = new StringBuilder();
sURL.Append("http://");
sURL.Append(sReportServer);
sURL.Append("/ReportServer?%2fReportsFolder%2f");
sURL.Append(sReportName); sURL.Append("&ParameterName=");
sURL.Append(ParamaterValue); sURL.Append("&rs:Command=Render&rc:Toolbar=false");
sURL.Append("&rs:format=PDF"); Response.Redirect(sURL.ToString());
Rui Sousa,
Portugal
]]>