• Hi,

    I am trying to show a report from a server by clicking a button.

    I do these things as

    Microsoft.Reporting.WebForms.ReportViewer form = new Microsoft.Reporting.WebForms.ReportViewer();

    Uri url = new Uri("http://server_name/reportserver");

    form.ServerReport.ReportServerUrl = url;

    form.ServerReport.ReportPath = "/report_folder/report";

    I want to open the form as when I preview the report in Report Server Project in Priview Tab

    Kind Regards.