aspnet-devexpress-dot-web-dot-uploadcontrolvalidationsettings-600175f0.md
Gets or sets the error text indicating that an external error occurs during the specified file’s uploading.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("File upload failed due to an external error")]
public string GeneralErrorText { get; set; }
<DefaultValue("File upload failed due to an external error")>
Public Property GeneralErrorText As String
| Type | Default | Description |
|---|---|---|
| String | "File upload failed due to an external error" |
A String value that specifies the error text.
|
You can access this nested property as listed below:
| Library | Object Type | Path to GeneralErrorText |
|---|---|---|
| ASP.NET MVC Extensions | UploadControlBinderSettings |
.ValidationSettings .GeneralErrorText
| | UploadControlSettings |
.ValidationSettings .GeneralErrorText
| | ASP.NET Web Forms Controls | ASPxUploadControl |
.ValidationSettings .GeneralErrorText
|
<dx:ASPxUploadControl ID="ASPxUploadControl1" runat="server" OnFileUploadComplete="uc_FileUploadComplete">
<ValidationSettings AllowedFileExtensions=".txt,.jpg,.jpe,.jpeg,.doc" MaxFileSize="1000000"
FileDoesNotExistErrorText="A file cannot be found."
GeneralErrorText="File uploading fails due to an external error that doesn't relate to the ASPxUploadControl's functionality."
MaxFileSizeErrorText="Uploaded file size exceeds the maximum file size."
NotAllowedFileExtensionErrorText="The file extension is not allowed.">
<ErrorStyle BackColor="Yellow" ForeColor="Black" />
</ValidationSettings>
</dx:ASPxUploadControl>
protected void uc_FileUploadComplete(object sender, DevExpress.Web.FileUploadCompleteEventArgs e) {
if (e.IsValid) {
ASPxUploadControl1.SaveAs(MapPath("Images/" + ASPxUploadControl1.FileName));
}
}
Protected Sub uc_FileUploadComplete(ByVal sender As Object, ByVal e As DevExpress.Web.FileUploadCompleteEventArgs)
If e.IsValid Then
ASPxUploadControl1.SaveAs(MapPath("Images/" & ASPxUploadControl1.FileName))
End If
End Sub
See Also
UploadControlValidationSettings Class