This is a migrated thread and some comments may be shown as answers.

ASP.NET ReportViewer pass parameters problem

2 Answers 246 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Tzach
Top achievements
Rank 1
Tzach asked on 20 Jul 2008, 12:38 AM
Hello,

I'm trying to build a simple ASP.NET web application with two pages. One containing controls that determine the filter parameters for a report that I would like to display on another web page.
As the documentation lack good examples, I've searched in your support web site and found a video that explains how to create a similar project using Telerik Reporting 2007. While trying to do the same with Telerik 2008 SP1, I can't seem to find the SqlDataAdapter in the Telerik Reporting ToolBox (VS 2005).
Can you please guide me in the right direction?

Regards,
Tzach. 

2 Answers, 1 is accepted

Sort by
0
Tzach
Top achievements
Rank 1
answered on 20 Jul 2008, 12:46 AM
Found the SqlDataAdapter, it needed manual adding.
0
Vishal
Top achievements
Rank 1
answered on 06 Oct 2008, 11:15 AM

Try this.....

ReportParameter param = new ReportParameter

("Title", "Vishal Sanchihar");

ReportParameter[] p ={ param };

ReportViewer1.LocalReport.SetParameters(p);

Tags
General Discussions
Asked by
Tzach
Top achievements
Rank 1
Answers by
Tzach
Top achievements
Rank 1
Vishal
Top achievements
Rank 1
Share this question
or