Community & Support
Skip Navigation LinksHome / Community & Support / Code Library / Telerik Reporting > General and Integration Projects > Using Telerik Web ReportViewer in ASP.NET MVC application

Not answered Using Telerik Web ReportViewer in ASP.NET MVC application

Feed from this thread
  • Posted on May 26, 2010 (permalink)

    Requirements

    Telerik Reporting version

    4.0+
    .NET version

    2.0+
    Visual Studio version

    VS2008+
    programming language

    C#
    To convert code

    Telerik online converter  


    PROJECT DESCRIPTION
    This code library shows you how to use Telerik Reporting web ReportViewer in ASP.NET MVC. Since it is a standard ASP.NET server control which relies on the classic Web Forms behavior including page lifecycle, viewstate, postback mechanism, etc, we need to override VerifyRenderingInServerForm event handler.
    i.e.

     public override void VerifyRenderingInServerForm(Control control) 
            { 
                // to avoid the server form (<form runat="server">) requirement 
            } 

    Three projects are attached showing the functionality at hand covering MVC 1 and MVC 2 for VS2008 and MVC 2 for VS2010.


Back to Top

Skip Navigation LinksHome / Community & Support / Code Library / Telerik Reporting > General and Integration Projects > Using Telerik Web ReportViewer in ASP.NET MVC application