Hunt

Wednesday, February 29, 2012

UploadModule is not installed into web.config.! error in iis7

Please check your IIS mode then change the web.config.

IIS 6.0 and IIS 7.0 Classic mode
<configuration>
<system.web>
<httpmodules>
<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader">
</add></httpmodules>
</system.web>


IIS 7.0 Integrated mode
<configuration>
<system.webserver>
<modules>
<add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader">
</add></modules>
</system.webserver>


------------------------
URL:

http://amitbrothers.blogspot.in/2011/01/uploadmodule-is-not-installed-into.html

No comments:

Post a Comment