URL of the page to which files selected for upload in Image Uploader are sent to.
Namespace:
Aurigma.ImageUploader
Assembly:
Aurigma.ImageUploader (in Aurigma.ImageUploader.dll)
Public Property Action As String
public string Action { get; set; }
A string that specifies the URL to the page files are posted to.
Default value is "."
.
This property corresponds to Action client-side property.
When specifying this property, take into account the following cases:
You can specify several URLs in this property to upload files to several servers. In this case you should specify these URLs separated by a semicolon character (;
):
URL1;URL2;URL3;...
URLs can contain semicolon or quotation mark characters (like this one: http://upload.server.com/uploadFile;jsessionid=123?param='value'
). If so, to avoid parameter
parsing errors enclose such URLs in single (' '
) or double (" "
) quotes. Additionally, quotation marks (both single '
and double "
) inside
URLs should be escaped with a backslash:
"http://upload.server.com/uploadFile;jsessionid=123?param=\'value\'"
If you want to submit files to the same page Image Uploader is hosted on, specify the dot character (.
) as a value of this property.
URLs can be both absolute (e.g. http://domain.com/upload/upload.aspx
) and relative to the current page (e.g. /upload/upload.aspx
).
For example, if Image Uploader is inserted to the http://domain.com/ImageUploader/default.aspx
page, the relative URLs specified via this property will correspond to the following locations.
Specified URL | Expected Location |
---|---|
"/upload/upload.aspx"
|
http://domain.com/upload/upload.aspx
|
"./upload/upload.aspx"
|
http://domain.com/ImageUploader/upload/upload.aspx
|
"upload/upload.aspx"
|
http://domain.com/ImageUploader/upload/upload.aspx
|
"upload.aspx"
|
http://domain.com/ImageUploader/upload.aspx
|