Documentation . v5.2

Install, configure, license, and deploy AjaxUploader 5.2.

Quick-start setup, signer-config recipes for the new cloud transports, the full class reference, and migration notes for teams moving from 4.x - all in one place.

Quick start summary

Minimal Web Forms setup

  1. 1. Copy AjaxUploader.dll into your site's bin folder.
  2. 2. Register the au server control in Web.config or on the page.
  3. 3. Add the ajaxupload.axd handler entry in system.webServer.
  4. 4. Create a writable temp folder such as App_Data\UploaderTemp.
  5. 5. Add au:AjaxFileUpload to a Web Forms page and verify /ajaxupload.axd responds.
The local demo notes also call out the main app settings you can tune: temp directory, max file size, chunk size, allowed extensions, and resume support.

Web.config example

Handler and control registration

<pages>
 <controls>
 <add assembly="AjaxUploader"
 namespace="AjaxUploader.Controls"
 tagPrefix="au" />
 </controls>
</pages>

<handlers>
 <add name="AjaxUploader"
 path="ajaxupload.axd"
 verb="*"
 type="AjaxUploader.AjaxUploaderHandler, AjaxUploader"
 preCondition="integratedMode" />
</handlers>