jQuery.AjaxFileUpload.js
jQuery.AjaxFileUpload.js copied to clipboard
ajaxfileuplaod in asp.net -trying to call ashxhandler and it is not working. Please help
<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>
No idea what this means, and I have no experience with asp.net. Is there a Javascript error I can help you with?
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