Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+
  • The page you are viewing does not exist in the .NET Standard 2.0+ platform documentation. This link will take you to the parent topic of the current section.
  • The page you are viewing does not exist in the .NET Core 3.0+ platform documentation. This link will take you to the parent topic of the current section.

IModelActionWeb.IsPostBackRequired Property

Specifies whether a postback should be performed when the Action is executed.

Namespace: DevExpress.ExpressApp.Web.SystemModule

Assembly: DevExpress.ExpressApp.Web.v19.2.dll

Declaration

[DefaultValue(false)]
bool IsPostBackRequired { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to perform a postback when the Action is executed; false, to perform a callback.

Remarks

Set the IsPostBackRequired property to true for Actions that should be executed on postback. For instance, the built-in Export Action is executed on postback, because a postback is required to transmit a file to the client. An example of using this property is provided in the How to: Print a Report Without Displaying a Preview topic.

Important

Set this property to true when implementing a custom Action that initiates a file download in a web application.

See Also