Deployment
There are two simple steps to install Ajax Uploader in your application:
Install the assembly
Copy the CuteWebUI.AjaxUploader.dll assembly to your application bin folder.
Add AjaxUploader httpModule to web.config's httpModules list
To allow Ajax Uploader to handle upload requests, you need to add its HttpModule to your application.
The following example shows a typical httpModules element with the Ajax Uploader HttpModule reference. Add this
section to the Web.config as a child of the <system.web> element.
<httpModules>
<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
</httpModules>
|
|