This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
How to point the form action to a method in code behind, instead of Upload.ashx?
  • Hi,
    On my ASPX page I have this JavaScript code:
    <script type="text/javascript" src="scripts/jquery-1.3.2.min.js"></script>
    <script type="text/javascript" src="scripts/jquery.uploadify.js"></script>

    <script type = "text/javascript">
    $(window).load(
    function() {
    $("#<%=FileUpload1.ClientID %>").fileUpload({
    'uploader': 'scripts/uploader.swf',
    'cancelImg': 'images/cancel.png',
    'buttonText': 'Browse Files',
    'script': 'Upload.ashx',
    'folder': 'uploads',
    'fileDesc': 'All Files',
    'fileExt': '*.*',
    'multi': true,
    'auto': true
    });
    }
    );
    </script>


    Question: As of now it sends the action to "Upload.ashx"; How to send action to a method on the same page's code behind instead?

    Thanks a lot for your help.