Gets or sets a name of field that contains file name in the Content-Disposition header.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.2.0

Syntax

C#
public string FilenameHeader { get; set; }
Visual Basic (Declaration)
Public Property FilenameHeader As String

Field Value

Type: System..::.String
The string represents the name of the file name field. Default value is "filename".

Remarks

This property is a reflection of EAUpload configuration parameter (<EasyAlgo.EAUpload>/<Exceptions ... FilenameHeader="" ... >).

This property may be useful if you use some client-side upload tool (such as custom flash-based uploader) that sends files with no compliance with RFC 1867.

Note:If you want to change this property at the runtime, you should define it at the Initializing stage of an upload (see EasyAlgo.EAUpload..::.UploadState for more information). All changes for processing uploads will be ignored. Also if you have changed this property for the whole of EAUpload component (EAUploadModule..::.CommonEnvironment property) then new value will be used for the new uploads only.

See Also