Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ASPxReportDesigner.RequestEvent Property

Defines when to process a POST/GET request.

Namespace: DevExpress.XtraReports.Web

Assembly: DevExpress.XtraReports.v24.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Reporting

#Declaration

public static RequestEvent RequestEvent { get; set; }

#Property Value

Type Description
RequestEvent

A RequestEvent enumeration value.

Available values:

Name Description
BeginRequest

A request is processed in the BeginRequest event handler.

PreRequestHandlerExecute

A request is processed in the PreRequestHandlerExecute event handler.

AuthorizeRequest

A request is processed in the System.Web.HttpApplication.AuthorizeRequest event handler.

#Remarks

A request can be processed during the BeginRequest or PreRequestHandlerExecute event.

The BeginRequest event is used by default, although at this point, the Session and User properties are not yet defined.

To process a request more thoroughly, i.e., during the PreRequestHandlerExecute event, it is required to modify the application’s Web.config file in the following way.

<system.web>
    <httpHandlers>
      <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" verb="GET,POST" path="DXXRDV.axd" validate="false" />
      <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" verb="GET,POST" path="DXXRD.axd" validate="false" />
    </httpHandlers>
  </system.web>

  <system.webServer>
    <handlers>
      <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" verb="GET,POST" path="DXXRDV.axd" name="ASPxReportDesignerHttpHandlerModule" preCondition="integratedMode" />
      <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v15.2, Version=15.2.4.0, Culture=neutral, PublicKeyToken=b88d1754d700e49a" verb="GET,POST" path="DXXRD.axd" name="ASPxReportDesignerHttpHandlerModule" preCondition="integratedMode" />
    </handlers>
  </system.webServer>
See Also