Skip to main content
A newer version of this page is available. .

ASPxHtmlEditorUploadSettingsBase.UseAdvancedUploadMode Property

Gets or sets a value specifying whether the advanced upload mode is used.

Namespace: DevExpress.Web.ASPxHtmlEditor

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

Declaration

[DefaultValue(true)]
public bool UseAdvancedUploadMode { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the advanced upload mode is used; false if the standard upload mode is used.

Property Paths

You can access this nested property as listed below:

Object Type Path to UseAdvancedUploadMode
HtmlEditorInsertAudioDialogSettings
.SettingsAudioUpload.UseAdvancedUploadMode
HtmlEditorInsertFlashDialogSettings
.SettingsFlashUpload.UseAdvancedUploadMode
HtmlEditorInsertImageDialogSettings
.SettingsImageUpload.UseAdvancedUploadMode
HtmlEditorInsertVideoDialogSettings
.SettingsVideoUpload.UseAdvancedUploadMode
MVCxHtmlEditorInsertAudioDialogSettings
.SettingsAudioUpload.UseAdvancedUploadMode
MVCxHtmlEditorInsertFlashDialogSettings
.SettingsFlashUpload.UseAdvancedUploadMode
MVCxHtmlEditorInsertImageDialogSettings
.SettingsImageUpload.UseAdvancedUploadMode
MVCxHtmlEditorInsertVideoDialogSettings
.SettingsVideoUpload.UseAdvancedUploadMode

Remarks

Use the UseAdvancedUploadMode property to choose from two provided upload modes:

  • In the Standard Mode, the uploaded file is sent to the server in one request and is cached in its entirety in server memory.
  • In the Advanced Mode, the uploaded file is sent to the server in small packets (one by one) and is saved in a temporary file within a specific server folder.

To learn more about upload modes, see the Upload Modes topic.

See Also