After File Upload page is automatic post.. which i dont want.. i

Last post 01-24-2011, 11:15 AM by Eric. 1 replies.
Sort Posts: Previous Next
  •  01-24-2011, 5:07 AM 65850

    After File Upload page is automatic post.. which i dont want.. i

    Hi  guys
    I am using ASP Uploader. here is what  i found issue.. i have implemented aspuploader in my exiting webpage. which is also dynamic..
     
    now. when file upload successfully then its automatically post current page..  which i dont want.. its should be stay on the same page.. thats what i need.. 
    can you please guide me. is this issue or do i need to configure? 
    thanks

    Vikramsinh Jadeja
    Appliquer Technologies
    www.appliquertech.com
  •  01-24-2011, 11:15 AM 65858 in reply to 65850

    Re: After File Upload page is automatic post.. which i dont want.. i

    Dear appliquertech,
     
    ASP Uploader 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://aspuploader.com/demo/form-manualstart.asp 
     
    Thank you for asking
     
View as RSS news feed in XML