Using Telerik Web ReportViewer in ASP.NET MVC application

Thread is closed for posting
1 posts, 0 answers
  1. 63F75A2C-1F16-4AED-AFE8-B1BBD57646AD
    63F75A2C-1F16-4AED-AFE8-B1BBD57646AD avatar
    1572 posts
    Member since:
    Oct 2004

    Posted 26 May 2010 Link to this post

    Requirements

    Telerik Reporting version 4.0+
    .NET version 2.0+
    Visual Studio version VS2008+
    programming language C#
    To convert code

    Telerik online converter  


    [OBSOLETE: This code library is obsolete. In Q3 2013 we have introduced HTML5 Report Viewer with ASP.NET MVC Extension.]

    PROJECT DESCRIPTION
    This code library shows you how to use Telerik Reporting Web Report Viewer with the ASP.NET MVC and Razor view engine. 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 
            } 

    For MVC 3 you can include partial view with the web report viewer in a MVC 3 page:

    @Html.Partial("ViewPageTelerikReport")
Back to Top

This Code Library is part of the product documentation and subject to the respective product license agreement.