Skip to main content
Tab

UploadControlValidationSettings.DisableHttpHandlerValidation Property

Specifies whether to disable the ASPxUploadProgressHttpHandler validation.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
Boolean false

true, to disable the validation; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to DisableHttpHandlerValidation
ASP.NET MVC Extensions UploadControlBinderSettings
.ValidationSettings .DisableHttpHandlerValidation
UploadControlSettings
.ValidationSettings .DisableHttpHandlerValidation
ASP.NET Web Forms Controls ASPxUploadControl
.ValidationSettings .DisableHttpHandlerValidation

Remarks

In some configurations, it’s impossible to automatically validate the ASPxUploadProgressHttpHandler, for example, if the handler is registered inside the <location> section and the InheritInChildApplications property is set to false. In this case, to validate the handler manually, disable the automatic validation option by setting the DisableHttpHandlerValidation property to false.

<dx:ASPxUploadControl ...>
    <ValidationSettings DisableHttpHandlerValidation="true" />
</dx:ASPxUploadControl>
See Also