Ajax Uploader
Home | Advanced examples | Deployment | Forums | Order

Deployment

There are 4 simple steps to install Ajax Uploader Advanced examples:

  1. Install the assembly

    Copy the CuteWebUI.AjaxUploader.dll assembly to your application bin folder.

  2. 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.

    IIS 6.0 and IIS 7.0 Classic mode

    <configuration>
      <system.web>
        <httpModules>
          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
         </httpModules>
      </system.web>
    </configuration>

    IIS 7.0 Integrated mode

    <configuration>
      <system.webServer>
        <modules>
          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
        </modules>
      </system.webServer>
    </configuration>


  3. Execute SQLScripts\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=AjaxUploader;uid=test;pwd=test"/>


.NET Framework

.NET Framework
Compatible with .NET Framework 1.1, 2.0, 3.0, 3.5.