Gets or sets the url (absolute or relative) to the handler that will receive and save files.

Namespace:  UltimateUploader
Assembly:  UltimateUploader (in UltimateUploader.dll) Version: 1.4.0.0 (1.4.0)

Syntax

C#
public string UploadHandler { get; set; }
Visual Basic (Declaration)
Public Property UploadHandler As String
Visual C++
public:
property String^ UploadHandler {
	String^ get ();
	void set (String^ value);
}

Field Value

The url of the handler that receives uploaded files.

Examples

"/MyHandler.ashx" or "http://mysite.com/myapp/handler.php".

See Also