jQuery.AjaxFileUpload.js icon indicating copy to clipboard operation
jQuery.AjaxFileUpload.js copied to clipboard

ajaxfileuplaod in asp.net -trying to call ashxhandler and it is not working. Please help

Open mmarudah opened this issue 12 years ago • 2 comments

<title>Ajax File Uploader Plugin For Jquery</title>
<link href="ajaxfileupload.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="ajaxfileupload.js"></script>
<script type="text/javascript">


        $('#fileToUpload').ajaxfileupload({ 'action': 'ajaxfileupload.ashx' });

</script>
        </div>
        </form>
    </div>
</div>

mmarudah avatar May 02 '13 19:05 mmarudah

No idea what this means, and I have no experience with asp.net. Is there a Javascript error I can help you with?

jfeldstein avatar May 02 '13 20:05 jfeldstein

This example shows a simple way to uploading the file to the server along with the progress bar.

Prerequisites:

  • http handler to save the file on the server.
  • ajax method to make the post call
  • bootstrap progress bar to show the progress.

http://gilgh.com/article/Ajax_file_upload_with_progress_bar_and_asp_net This may help you

samuel21 avatar Nov 19 '13 04:11 samuel21