Click or drag to resize
MvcUploaderDialogFilter Property
Gets or sets the current file name filter string, which determines the choices that appear in the file browser dialog box. Please note that only ValidateOption.AllowedFileExtensions property determine the allowed file extensions for uploading.

Namespace: CuteWebUI
Assembly: CuteWebUI.AjaxUploader (in CuteWebUI.AjaxUploader.dll) Version: 4.0.0.0
Syntax
public string DialogFilter { get; set; }

Property Value

Type: String
Remarks

For each filtering option, the filter string contains a description of the filter, followed by the vertical bar (|) and the filter pattern. The strings for different filtering options are separated by the vertical bar.

The following is an example of a filter string:

Text files (*.txt)|*.txt|All files (*.*)|*.*

You can add several filter patterns to a filter by separating the file types with semicolons, for example:

Image Files(*.BMP;*.JPG;*.GIF)|*.BMP;*.JPG;*.GIF|All files (*.*)|*.*

See Also