-
Notifications
You must be signed in to change notification settings - Fork 157
Home
Welcome to the Backload wiki!
Setting up the Backload component
Configuration options, settings and defaults
The original demo of the JQuery File Upload Plugin from blueimp in interaction with the Backload server side component can be downloaded here. This demo can also be included in an existing ASP.NET MVC application via NuGet (see instrucitons below).
Example 01: Zero configuration
Example 02: Configuration basics: Using web.config
Example 03: Configuration basics: Using an external config file
Example 04: Using your own controllers
Example 05: Using server side image manipulation features
Example 06: Managing subfolders: Using the object context
Example 07: Managing subfolders: Using the upload context
#####Note:
All examples and demos use the NuGet packet manager for the Backload component, the client side plugin files and other dependencies to install:
PM> Install-Package Backload
If you want to test the component with the original demo from the JQuery File Upload Plugin project page, you can download the standalone repository here or you include it via NuGet packet manager in your existing MVC Application:
PM> Install-Package JQueryFileUpload_Demo_with_Backload
A few things to note here:
- The demo package installs a HomeController to handle the different demos (Basic, Basic Plus, Basic Plus UI, etc), so it may conflicts with an existing HomeController.
- Although the demo package takes care, that jQuery and jQueryUI are installed in your MVC application, it expects that bundeling is already setup (global.asax and
/App_Start/BundleConfig.cs) with the virtual bundeling path "/bundles/jquery" (jQuery) and "~/bundles/jqueryui" (jQueryUI). Alternatively you may edit _Layout.cshtml and JQueryUI.cshtml and manually include jQuery and jQueryUI.