Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 Development Tools
 Reporting Services Development
 need sample ASP>NET programme call report

Author  Topic 

tboonleong
Starting Member

24 Posts

Posted - 2005-08-11 : 06:12:29
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!!!!!

gcowhsu
Starting Member

38 Posts

Posted - 2005-08-11 : 11:31:13
THere are 3 ways to view a report, you can either directly link to it, which will display in report manager, you can display a form and use the reportviewer to display the report, or you can render the report as HTML and display it on the page.


Reportviewer
//ReportViewer1.ServerUrl = Session.Contents["ReportServer"].ToString();
//ReportViewer1.ReportPath="/Credit/RCLAForm&rs:Command=Render&rc:parameters=false&tblRequestId=" + Request.QueryString["tblRequestId"].ToString();

Render in ASP
http://channel9.msdn.com/ShowPost.aspx?PostID=87032, there is also a Microsoft Article too if you check the knowledge base

Direct Link to Report Manager
Same as reportviewer
Response.redirect("/reportserver/myreport&rs:Command=Render&rc:parameters=false&tblRequestId=" + Request.QueryString["tblRequestId"].ToString()"
Go to Top of Page

tboonleong
Starting Member

24 Posts

Posted - 2005-08-12 : 02:07:30
Thanks a lot for ur help.
Go to Top of Page
   

- Advertisement -