ActiveReports 14 .NET Edition
GrapeCity.ActiveReports.Web Assembly / GrapeCity.ActiveReports.Web.Handlers Namespace / RdlxHandler Class
Members

In This Topic
    RdlxHandler Class
    In This Topic
    Should be registered with the *.rdlx file extension to pick up any request for an rdlx file and process it. The handler loads the rdlx file into ActiveReport, runs and exports it to a specified format, defaulting to HTML.
    Object Model
    RdlxHandler Class
    Syntax
    'Declaration
     
    Public NotInheritable Class RdlxHandler 
       Inherits ArHandlerBase
    public sealed class RdlxHandler : ArHandlerBase 
    Remarks
    To use this handler you must enter the following into your web.config file:
    <httpHandlers>
    <add verb="*" path="*.rdlx" type="GrapeCity.ActiveReports.Web.Handlers.RdlxHandler, GrapeCity.ActiveReports.Web.v12" />
    </httpHandlers>
    Inheritance Hierarchy

    System.Object
       GrapeCity.ActiveReports.Web.Handlers.ArHandlerBase
          GrapeCity.ActiveReports.Web.Handlers.RdlxHandler

    See Also