or
Telerik.Reporting.dll
Telerik.ReportViewer.WebForms.dll
Telerik.Web.UI.dll
WebReports.dll
Hi,
I hope someone can point me in the right direction. I have upgraded to Telerik Reports 4.0.10.310, and I've noticed that the reports are working great with stored procedures with parameters in the report library assembly. However, when I try to update the report viewer with the new report, I am getting a page error at the website, with a "Conditional compilation is turned off" error. My development environment is VS 2010, Telerik Reports 4.0.10.310, using ASP.NET with VB.NET. The code is below.
<telerik:ReportViewer ID="ReportViewer1" runat="server" |
Report="Reports.WeekDetail, Reports, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" |
Width="7.5in" Height="450px"> |
</telerik:ReportViewer> |
Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged |
ReportViewer1.Report.ReportParameters(0).Value = DropDownList1.SelectedValue |
End Sub |