ActiveReports 8
RdlxHandler Class
Members  See Also 
GrapeCity.ActiveReports.Web.v8 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.v8" />
</httpHandlers>

Inheritance Hierarchy

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

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also