Thursday, August 26, 2010

How do i get ajaxuploader to work with IIS7

If you are using IIS 7.0 Integrated mode you need to use the following code to add uploadmodule into web.config

IIS 7.0 Integrated mode

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

No comments:

Post a Comment