Hi
string id = Request.QueryString["id"];
Value Get
Telerik Report Parameters
Value Set
Example
Q2 2009
using Telerik.Reporting;
string id = Request.QueryString["id"];
Value Get
Telerik Report Parameters
Value Set
Example
Q2 2009
using Telerik.Reporting;
string reportName = Server.UrlDecode(this.Request.QueryString["ReportName"]);
string id = Request.QueryString["id"];
if (!string.IsNullOrEmpty(reportName))
{
Type reportType = Type.GetType(reportName);
IReportDocument report = (IReportDocument)Activator.CreateInstance(reportType);
????? report.ReportParameters
this.ReportViewer1.Report = report;
this.Page.Title = reportType.Name;
}