I am trying to set the report name for a telerik report from the query string.I am using Casesand I want to pass the reportname to the following line of code:\[code\]report = new Volunteer.MainApplication.Reports.*reportname*\[/code\]I have tried \[code\]report = new Volunteer.MainApplication.Reports.*reportname*<%request.querystring("reportname")%?> var newRpt = "new Volunteer.MainApplication.Reports."; newRpt += Request.QueryString["Report"].ToString(); report = newRpt; \[/code\]