Inline Uploader

Demo uploads land in a temporary store and are swept after 60 minutes. To keep files, handle FileUploaded — see Single File for the complete save pattern.
Inline Uploader

Embed a compact uploader inline within text flow, useful for inserting attachments in the middle of a form or paragraph.

What you should see: the control collapsed onto one line so it sits beside a label in a form row without disturbing layout.
Please attach your signed document before submitting the form below.
<!-- Inline in text flow -->
Please attach your signed document
<span id="inlineUploader"></span>
<span id="fileName"></span>
before submitting the form.

<script>
AjaxUploader.create(document.getElementById('inlineUploader'), {
 uploadUrl: '/ajaxupload.axd/upload',
 multiple: false,
 autoUpload: true,
 onComplete: function (file) {
 document.getElementById('fileName').textContent = file.name;
 }
});
</script>