Aurigma Video Uploader 1.0
VideoUploader.RedirectUrl Property
URL to which the user will be redirected when the upload successfully completes.
Syntax
Initialize
JavaScript
<script type="text/javascript" src="iuembed.js"> </script> <script type="text/javascript"> var vu = new VideoUploaderWriter("VideoUploaderID", 610, 500); //...other params... vu.addParam("RedirectUrl", ""); //...other params... vu.writeHtml(); </script>
Get/Set Value in Runtime
JavaScript
getVideoUploader("VideoUploaderID").setRedirectUrl(value);
value = getVideoUploader("VideoUploaderID").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, Video Uploader will not try to redirect.
Default value is "".