Hi jserrano,
Please do not use both of them in the web.config. Check your application pool mode and use one of the code below.
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>
Regards,
Ken