UploadControlValidationSettings.DisableHttpHandlerValidation Property
In This Article
Specifies whether to disable the ASPxUploadProgressHttpHandler validation.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.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 Disable |
---|---|---|
ASP. |
Upload |
|
Upload |
|
|
ASP. |
ASPx |
|
#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