Hi,
I found:
https://www.experts-exchange.com/questions/24170316/CaptchaImage.html
and
http://arcware.net/use-a-single-web-config-for-iis6-and-iis7/ .
However, I still need help making the captcha example found at:
http://www.mondor.org/captcha.aspx
to work on IIS7 and .NET 3.5 .
I followed the directions on mondor.org. I was able to get this captcha to work on a local install of IIS 5.2 and .NET 3.5 on Windows XP SP 3.
Currently, I have:
<system.webServer>
<validation validateIntegratedModeConf
iguration=
"false" />
<modules>
<add name="ews" type="MSCaptcha.CaptchaIma
geHandler,
MSCaptcha"/>
</modules>
<handlers accessPolicy="Read, Write, Script, Execute">
<add name="ews" verb="GET" path="CaptchaImage.axd" type="MSCaptcha.CaptchaIma
geHandler,
MSCaptcha"/>
</handlers>
These pages are located on a private web server with a 10. IP address, not the local machine. This server runs Windows Server 2008.
How should web config file be written to make the captcha appear on the credit payment page inside a larger system?
Currently, the error in the browser is:
System.Configuration.Confi
gurationEr
rorsExcept
ion: MSCaptcha.CaptchaImageHand
ler, MSCaptcha does not implement IHttpModule.
Thanks, LLJ45