FileManagerDialogConfigurationMaxUploadFileSize Property |
Gets or sets the max filesize which users are able to upload in bytes
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic int MaxUploadFileSize { get; set; }
Public Property MaxUploadFileSize As Integer
Get
Set
public:
property int MaxUploadFileSize {
int get ();
void set (int value);
}
member MaxUploadFileSize : int with get, set
Property Value
Type:
Int32
An
Int32, representing the max filesize which users are able
to upload in bytes.
Remarks
The value of the MaxUploadFileSize property should be less or equal
to the <httpRuntime maxRequestLength...> website property, specified in either
the web.config or machine.config files. The <httpRuntime maxRequestLength...>
property controls the allowed post request length for the website.
See Also