URL to which the user will be redirected when the upload successfully completes.
Syntax
Initialize
| JavaScript | Copy Code
|
|---|---|
<script type="text/javascript" src="iuembed.js"></script> <script type="text/javascript"> var iu = new ImageUploaderWriter("ImageUploaderID", 610, 500); //...other params... iu.addParam("RedirectUrl", ""); //...other params... iu.writeHtml(); </script> |
|
Get/Set Value in Runtime
| JavaScript | Copy Code
|
|---|---|
getImageUploader("ImageUploaderID").setRedirectUrl(value);
value = getImageUploader("ImageUploaderID").getRedirectUrl();
|
|
Property Value
A string value containing a correct URL to which the user will be redirected after upload. If it is an empty string, Image Uploader will not try to redirect.
Default value is "".
Copy Code