Rendering Report
ReportParameter
[] parameters =newReportParameter[1];parameters[0] =newReportParameter("ID", Id.ToString());
ReportViewer1.ServerReport.SetParameters(parameters);
ReportViewer1.ServerReport.Refresh();
I am using this to render my report in a page, the report executes good but i cant see the body, when i export to pdf i am able to see ...I have set the server url and path in design view.

