aspnet-devexpress-dot-web-dot-uploadcontrolvalidationsettings.md
Specifies whether to disable the ASPxUploadProgressHttpHandler validation.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool DisableHttpHandlerValidation { get; set; }
<DefaultValue(False)>
Public Property DisableHttpHandlerValidation As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true, to disable the validation; otherwise, false.
|
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
|
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
UploadControlValidationSettings Class