Re: Ajax Uploadewr in MVC

  •  05-05-2010, 8:55 PM

    Re: Ajax Uploadewr in MVC

    Hi,
     
    You can use javascript API to catch the event.
     
     
    add this script into your page :
     
    <script>
    function CuteWebUI_AjaxUploader_OnPostback()
    {
        var uploader=this;
     
        //guid list splited by '/'
        alert(uploader.value);
     
        //todo: submit your page here.
     
        return false;
    }
    </script>
     
    Regards,
    Terry
     
View Complete Thread