Installation Guide
There are 4 simple steps to install Ajax Uploader Advanced examples.
1. Install the assembly
Copy the assembly and license file (CuteWebUI.AjaxUploader.dll, AjaxUploader4.lic) to your application bin folder.
2. Add Uploader httpModule to web.config's httpModules list
To allow Ajax Uploader to handle upload requests, you need to add its HttpModule to your application.
IIS Integrated mode
<configuration>
<system.webServer>
<modules>
<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
</modules>
</system.webServer>
</configuration>
IIS Classic mode
<configuration>
<system.web>
<httpModules>
<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
</httpModules>
</system.web>
</configuration>
3. Execute App_Data\InstallSamples.sql against your existing database or create a new database.
4. Update the web.config to use your custom connection string.
<add key="SampleSqlServer" value="server=(local);database=uploadersamples;uid=test;pwd=test" />