I'm trying to use jQuery File Upload with Backload as a handler in an ASP.NET website, but can't get it to work.
This is the Default.aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE HTML>
<html>
<head runat="server">
<meta charset="utf-8">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/vendor/jquery.ui.widget.js"></script>
<script src="js/jquery.iframe-transport.js"></script>
<script src="js/jquery.fileupload.js"></script>
<script src="js/uploader.js"></script>
</head>
<body>
<input id="fileupload" type="file">
</body>
</html>
And the js to enable the file upload plugin:
$(document).ready(function () {
var handlerUrl = "/Backload/FileHandler";
$('#fileupload').fileupload({
url: handlerUrl
});
});
I have installed Backload using NuGet, and loaded jQuery File Upload into my project. All the references are loading fine (no errors in the console). When I try to upload a file I get an error:
Failed to load resource: the server responded with a status of 404 (Not Found)
, and the resource noted is http://localhost:61076/Backload/FileHandler
.
What am I missing here?
NOTE: I did not write any of this code. These are all copy\paste examples from the relevant sources, as I'm trying to get a basic thing working before actually building my own website.
I think that you miss "r" in FileHandler action name http://localhost:61076/Backload/FileHandler