Re: No progress indicator

  •  12-14-2008, 11:29 PM

    Re: No progress indicator

    Steve,
     
    Have you finished the step below?
     
    1. Add AjaxUploader httpModule to web.config's httpModules list

      To allow Ajax Uploader to handle upload requests, you need to add its HttpModule to your application.

      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>
    >>To be honest, I have used your products in the past, and always found them to work and be well documented, but this control's documentation is horrible.  I can read the code yes, but the code doesn't show me how to use all of the features that the control offers.
     
    We will improve the developer's guide soon. Sorry for the inconvenience.

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

View Complete Thread