reporting services

  • how to embed ssrs project to asp.net application

  • to help you we need a question to answer please.

    ---------------------------------------------------------------------

  • DURGESH-769360 (1/30/2010)


    how to embed ssrs project to asp.net application

    You use the web version of reportviewer control to do that you can use it in local mode which means you run it without SSRS license or remote mode which requires SSRS license. I have covered the details in the thread below so take some time study it and then post some specific questions.

    http://qa.sqlservercentral.com/Forums/Topic822431-150-1.aspx

    Kind regards,
    Gift Peddie

  • To those of you confused the OP edited his post after my request for something more specific.

    thanks OP.

    ---------------------------------------------------------------------

  • george sibbald (1/30/2010)


    To those of you confused the OP edited his post after my request for something more specific.

    thanks OP.

    Thanks George I thought so this forum and the Reports Dev forum are full of questions that are either not clear or some one wants us to do their work for them.

    Kind regards,
    Gift Peddie

  • hello sir its dhirendra here.i ve give a task to get details of sql repoting.i ve jst finished my studies.from where should i start to underastand it......plz send ur reply..

    gd day

  • BOL and Google\microsoft.com

    ---------------------------------------------------------------------

  • BOL = Books Online

    Google = Search Engine

    Microsoft.com = Microsoft's Official Website

  • if (!Page.IsPostBack)

    {

    ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;

    ReportViewer1.ServerReport.ReportServerCredentials = new ReportServerNetworkCredentials();

    ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://10.168.2.32/ReportServer");

    ReportViewer1.ServerReport.ReportPath = "/Business Intelligence Reports/TerritoryProductPerformance_AnalysisReport";

    ReportViewer1.ServerReport.Refresh();

    }

    remmeber- use the Report Server Web URL not report manager url.

    and above code for your web application's report viewer loading event.

    I hope it will help some.

    Zahirul

Viewing 9 posts - 1 through 8 (of 8 total)

You must be logged in to reply to this topic. Login to reply