Vui lòng kiểm tra chế độ IIS của bạn sau đó thay đổi web.config.
IIS 6.0 và IIS 7.0 chế độ Classic
<configuration>
<system.web>
<httpModules>
<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
</httpModules>
</system.web>
</configuration>
IIS 7.0 chế độ Integrated
<configuration>
<system.webServer>
<modules>
<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
</modules>
</system.webServer>
</configuration>