Select the set of elements to display in radUpload:
 |
| Uploaded % () Total |
 |
| Uploaded files: % () Total files: |
| Uploading file: |
| Elapsed time: Estimated time: Speed: |
No uploaded files yet
Note: Because of the specifics of the Internet forms, chosen files will be
uploaded on each postback (e.g. each press of a button)
Note: The largest allowed combined file size for upload in this example is 100MB. This is specified by the
maxRequestLength="102400" set in Web.config file. If you attempt to upload files with total size greater that 100MB
you will get "Page Not Found" error. For more information about uploading large files visit the help article
Uploading Large Files
Source Code & Description
Customizing the Look of RadUpload
RadUpload has a ControlObjectsVisibility property of type
ControlObjectsVisibility. The ControlObjectsVisibility enum contains the following members:
-
None
- displays only the file input fields
-
CheckBoxes
- displays checkboxes in front of the file input fields. Used in conjunction
with the Delete (Selected) button and the DeleteSelectedButton value of
ControlObjectsVisibility
-
RemoveButtons
- displays Remove buttons on the right of the file input fields
-
ClearButtons
- displays Clear buttons on the right of the file input fields
-
AddButton
- displays an Add button below the file input fields
-
DeleteSelectedButton
- displays a Delete button below the file input fields - used in conjunction
with the CheckBoxes value
-
Default
- a combination of CheckBoxes, RemoveButtons, AddButton and
DeleteSelectedButton values
-
All - a combination of all the members
The ControlObjectsVisibility property can receive any combination of these
flags, e.g.:
Radupload1.ControlObjectsVisibility = ControlObjectsVisibility.RemoveButtons |
ControlObjectsVisibility.ClearButtons
RadUpload exposes two properties to control the number of file inputs:
-
InitialFileInputsCount - the file inputs count which will be available at startup.
The default value is 1.
-
MaxFileInputsCount - limit the maximum number of file inputs which can be added to a RadUpload
instance.
