January 30, 2010 at 4:33 am
how to embed ssrs project to asp.net application
January 30, 2010 at 4:36 am
to help you we need a question to answer please.
---------------------------------------------------------------------
January 30, 2010 at 9:14 am
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://www.sqlservercentral.com/Forums/Topic822431-150-1.aspx
Kind regards,
Gift Peddie
January 30, 2010 at 10:20 am
To those of you confused the OP edited his post after my request for something more specific.
thanks OP.
---------------------------------------------------------------------
January 30, 2010 at 10:40 am
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
February 8, 2010 at 12:28 pm
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
February 9, 2010 at 4:38 am
BOL and Google\microsoft.com
---------------------------------------------------------------------
June 1, 2011 at 6:12 am
BOL = Books Online
Google = Search Engine
Microsoft.com = Microsoft's Official Website
January 23, 2012 at 11:33 pm
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