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

Glossary Item Box

Should be registered with the *.rpx file extension to pick up and process any request for an rpx file. The handler loads the rpx file into ActiveReports, runs and exports it to a specified format, defaulting to HTML.

Object Model

RpxHandler Class

Syntax

Visual Basic (Declaration) 
Public NotInheritable Class RpxHandler 
   Inherits ArHandlerBase
C# 
public sealed class RpxHandler : ArHandlerBase 

Remarks

To use this handler you must enter the following into your web.config file (making sure that the Version is correct):

<httpHandlers>
<add verb="*" path="*.rpx" type="GrapeCity.ActiveReports.Web.Handlers.RpxHandler, ActiveReports.Web, Version=5.0.0.105, Culture=neutral, PublicKeyToken=cc4967777c49a3ff" />
</httpHandlers>

You may also set any parameters you've added to the report's Parameters collection via the DataSource icon in the URL.  For example:

http://localhost/AnyFolder/AnySubFolder/MyAssemblyName/ActiveReport1.rpx?Country=USA

Inheritance Hierarchy

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

See Also