Skip to main content

ASPxHtmlEditorUploadSettingsBase.UploadStorage Property

Specifies the type of storage used by the ASPxHtmlEditor control.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(UploadFileStorageType.FileSystem)]
public UploadFileStorageType UploadStorage { get; set; }

Property Value

Type Default Description
UploadFileStorageType FileSystem

One of the UploadFileStorageType enumeration values.

Available values:

Name Description
FileSystem

The control uploads files to the server’s physical file system. The files are automatically saved to the folder specified by the HtmlEditorUploadControlFileSystemSettings.UploadFolder property.

Azure

Identifies the Azure cloud storage used in ASPxHtmlEditor.

Amazon

Identifies the Amazon cloud storage used in ASPxHtmlEditor.

Dropbox

Identifies the Dropbox cloud storage used in ASPxHtmlEditor.

Remarks

ASPxHtmlEditor provides the capability to operate with files contained in the server’s physical file system or in cloud services. Use the UploadStorage property to specify the type of storage where the files are stored.

For Amazon storage, use the ASPxHtmlEditorUploadSettingsBase.AmazonSettings property to specify Amazon account settings.

For Azure storage, use the ASPxHtmlEditorUploadSettingsBase.AzureSettings property to specify the Azure account settings.

For Dropbox storage, use the ASPxHtmlEditorUploadSettingsBase.DropboxSettings property to specify the Dropbox account settings.

For FileSystem storage, use the ASPxHtmlEditorUploadSettingsBase.FileSystemSettings property to specify the file upload folder.

See Also