Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Ajax Uploader
»
Re: full postback after the multiple files uploaded
full postback after the multiple files uploaded
Last post 10-21-2010, 9:33 PM by
Kenneth
. 1 replies.
Sort Posts:
Oldest to newest
Newest to oldest
Previous
Next
10-21-2010, 9:04 AM
64556
deepakkumarjoshi
Joined on 10-20-2010
Posts 12
full postback after the multiple files uploaded
Reply
Quote
Hi!
after uploading the multiple files to the server full page postback is happening , plz tell me how to prevent it.
thanks!
10-21-2010, 9:33 PM
64589
in reply to
64556
Kenneth
Joined on 02-13-2008
Posts 3,886
Re: full postback after the multiple files uploaded
Reply
Quote
hi deepakkumarjoshi,
AjaxUploader need to transfer the upload files to the server, so the postback is necessary.
If you just want to prevent it, you can try the code below
<script>
function CuteWebUI_AjaxUploader_OnPostback()
{
return false;
}
</script>
If you want to submit the page after all your logic, please use the start uploading manually example. Below is the demo link
http://www.ajaxuploader.com/Demo/Start-uploading-manually.aspx
Regards,
Ken