Hi,
I Got some problems with the reportviewer.
Error:
 
 
 
 
 
 
 
My code ReportViewer.aspx
 
ReportViewer.aspx.cs
                                I Got some problems with the reportviewer.
Error:
Server Error in '/AjaxWebInterface' Application.Entry point was not found.Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.Exception Details: System.EntryPointNotFoundException: Entry point was not found.Source Error:An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.Stack Trace:[EntryPointNotFoundException: Entry point was not found.]   Telerik.Reporting.IReportDocument.get_ReportParameters() +0   Telerik.ReportViewer.WebForms.ReportViewer.get_HasParams() +127   Telerik.ReportViewer.WebForms.ReportViewer.SetParamControlsVisibility() +46   Telerik.ReportViewer.WebForms.ReportViewer.OnPreRender(EventArgs e) +47   System.Web.UI.Control.PreRenderRecursiveInternal() +80   System.Web.UI.Control.PreRenderRecursiveInternal() +171   System.Web.UI.Control.PreRenderRecursiveInternal() +171   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +842Version Information: Microsoft .NET Framework Version:2.0.50727.4927; ASP.NET Version:2.0.50727.4927My code ReportViewer.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ReportViewer.aspx.cs" Inherits="ReportViewer" %><%@ Register Assembly="Telerik.ReportViewer.WebForms, Version=4.0.10.423, Culture=neutral, PublicKeyToken=a9d7983dfcc261be"    Namespace="Telerik.ReportViewer.WebForms" TagPrefix="telerik" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body>    <form id="form1" runat="server">    <div id="Div1" style="vertical-align: top; height: 80px; background-image: url(<%= ResolveClientUrl("~/img") %>/logo.png);        background-position: right; background-repeat: no-repeat">        <asp:Panel runat="server" ID="DashboardPanel">        </asp:Panel>    </div>    <div>        <telerik:ReportViewer ID="ReportViewer1" runat="server" Width="100%" Height="100%">        </telerik:ReportViewer>    </div>    </form></body></html>ReportViewer.aspx.cs
public partial class ReportViewer : System.Web.UI.Page{    protected void Page_Load(object sender, EventArgs e)    {        ReportViewer1.Report = PluginManager.Instance.GetReport("TagByAllRegionsByYear");    }}