Re: Ajax Uploader gives me an error message

  •  02-09-2009, 7:21 PM

    Re: Ajax Uploader gives me an error message

    I have found a cure for my problem. When I run the program locally, I needed to put this in my web.config.
        <httpModules>
          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
         </httpModules>
     
    but when I published it to the actual server, I needed to put  this in my web.config.
        <modules>
          <add name="CuteWebUI.UploadModule" type="CuteWebUI.UploadModule,CuteWebUI.AjaxUploader"/>
        </modules>
     
     
View Complete Thread