Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: How to start manual upload
How to start manual upload
Last post 01-17-2010, 4:39 PM by
rhamer
. 2 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
01-13-2010, 11:44 PM
58154
rhamer
Joined on 01-14-2010
Posts 2
How to start manual upload
Reply
Quote
If I set the ManualStartUpload property to True, how do I then start the upload once the files have been selected?
I am writing a webapp in VB.NET.
Regards
Rohan
01-14-2010, 8:42 AM
58161
in reply to
58154
cutechat
Joined on 07-22-2004
Posts 2,332
Re: How to start manual upload
Reply
Quote
Rohan,
That is a client side behavior and must be controlled by JavaScript.
use startupload() function to start upload the selected files.
var uploadobj=document.getElementById('<%=Uploader1.ClientID %>');
uploadobj.startupload();
Please check the html code of
http://ajaxuploader.com/Demo/Start-uploading-manually.aspx
See function submitbutton_click() and function CuteWebUI_AjaxUploader_OnPostback()
Regards,
Terry
01-17-2010, 4:39 PM
58211
in reply to
58161
rhamer
Joined on 01-14-2010
Posts 2
Re: How to start manual upload
Reply
Quote
Ok, Thanks for your help.
Cheers
Rohan