Image is not displaying

Discussion in 'Windows / IIS' started by Donrajah, Mar 25, 2009.

  1. Hi Admins. today i uploaded and set our web site on discountasp.net. I am having one issue. In the development maching i can view my CAPTCHA image.
    But when i uploaded it to the Web site. Then the image is not displaying.

    When i googled abt it, some posted saying "In IIS7.0, you need to add the Manage handler in "Handler mappings" for recaptcha. For the path "captchaimage.aspx" put the hanlder as "WebControlCaptcha.CaptchaImageHandler" and give any name you like. Press"OK" and you are done."

    How do i make the corrections ?

    pls help ..Don
     
  2. WebCaptcha Handler is not working

    On my development machine my webcaptcha handler is working...but when testing on website hosted on DASP....it doesnt show the image...PLs help very urgent
     
  3. mjp

    mjp

  4. this is my web.config

    <add verb="*" path="CaptchaImage.aspx" type="WebControlCaptcha.CaptchaImageHandler, WebControlCaptcha"/>
     
  5. With IIS7 integrated mode, make sure you add the handler in the right section.

    Code:
    <configuration>
      <system.webServer>
        <handlers>
          <add name="CaptchaImage"
            verb="*"
            path="CaptchaImage.aspx"
            preCondition="integratedMode"
            type="WebControlCaptcha.CaptchaImageHandler, WebControlCaptcha"/>
        </handlers>
      </system.webServer>
    </configuration>
    
     
  6. yes sir it works thanks....salute to DASP team
     

Share This Page