Upload

Wisej.Web.Upload

Namespace: Wisej.Web

Assembly: Wisej.Framework (2.5.0.0)

Represent an upload widget. Allows users to selected one or more files and upload them to the server.

public class Upload : Control, IWisejHandler

Constructors

Upload()

Properties

AllowedFileTypes

Stringarrow-up-right: Specify the types of files that the server accepts (that can be submitted through a file upload).

The allowed files string follows the HTML 4.01 and HTML5 specifications. You can configure only one entry in the browser's file dialog. The syntax is "file_extension|audio/|video/|image/*|media_type" where

  • file_extension A file extension starting with the dot, e.g: .gif, .jpg, .png, .doc.

  • audio/* All sound files are accepted

  • video/* All video files are accepted

  • image/* All image files are accepted

  • media_type A valid media type, with no parameters. Look at IANA Media Typesarrow-up-right for a complete list of standard media types.

AllowMultipleFiles

Booleanarrow-up-right: Returns or sets whether the upload control allows the selection of multiple files.

ButtonPosition

ContentAlignmentarrow-up-right: Returns or sets the position of the upload button relative to the value field..

CaptureMode

CaptureMode: Returns or sets a value that specifies which camera to use for capture of image or video data, if the AllowedFileTypes property indicates that the input should be of one of those types.

HideValue

Booleanarrow-up-right: Returns or sets whether the value field is visible.

Image

Imagearrow-up-right: Returns or sets the icon that is displayed in the upload button in the Upload control.

ImageSource

Stringarrow-up-right: Returns or sets the theme name or URL for the icon to display in the upload button in the Upload control.

Invalid

Booleanarrow-up-right: Returns or sets a value that indicates that the control is invalid.

InvalidMessage

Stringarrow-up-right: Returns or sets the invalid message that is shown in the invalid tooltip.

MaxFileSize

Int32arrow-up-right: Returns or sets the maximum file size in bytes.

Throws:

ShowLoader

Booleanarrow-up-right: Returns or sets whether the upload control shows a the ajax-loader image when uploading the file(s).

Text

Stringarrow-up-right: Returns or sets the text associated with this control.

TextAlign

ContentAlignmentarrow-up-right: Returns or sets the alignment of the text on the button control.

Value

Stringarrow-up-right: Returns or sets the text to display in the text fields part of the control.

Methods

Abort()

Aborts the current upload request, if in progress.

UploadFiles()

Opens the file selection dialog and uploads the files selected by the user.

Events

Error

UploadErrorEventHandler Fired when the Upload control generates an upload error.

Progress

UploadProgressEventHandler Fired while the Upload control receives the data being uploaded.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event.

Uploaded

UploadedEventHandler Fired when files are uploaded to the Upload control.

Uploading

UploadingEventHandler Fired before the Upload control received the files being uploaded.

This event fires only if there is an handler attached to it. A simple overload of the On[Event] method in a derived class will not be invoked unless there is at least one handler attached to the event. You can abort the uploading process by setting e.Cancel = true in the event handler.

ValueChanged

EventHandlerarrow-up-right Fired when the user has selected the files to upload.

Implements

Name
Description

Bindable components implement this interface.

All wisej components implement this interface.

All wisej controls derived from the Control class must implement this interface.

Represents a Wisej component that is capable of handling postback requests from the client.

Allows an object to serialize itself.

Last updated

Was this helpful?