UploadControlValidationSettings.DisableHttpHandlerValidation Property
Specifies whether to disable the ASPxUploadProgressHttpHandler validation.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to DisableHttpHandlerValidation |
---|---|---|
ASP.NET Web Forms Controls | ASPxUploadControl |
|
ASP.NET MVC Extensions | UploadControlBinderSettings |
|
UploadControlSettings |
|
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