ActiveReports Developer 7
RdlxHandler Class
Members  See Also 
GrapeCity.ActiveReports.Web.v7 Assembly > GrapeCity.ActiveReports.Web.Handlers Namespace : RdlxHandler Class

Glossary Item Box

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

Visual Basic (Declaration) 
Public NotInheritable Class RdlxHandler 
   Inherits ArHandlerBase
C# 
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.v7" />
</httpHandlers>

Inheritance Hierarchy

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

See Also