Hi,
I have put in the WebCaptcha control on my application and so far I did not face any problems on the development site. But somehow or what had been missing? The WebCaptcha Image did not show on my default page after being published on the remote web site. Can someone help me on this issue?
Sample output:
Hello Ken,
Would you verify that you have the following lines of code in your web config?
<httpHandlers>
<add path="WebCaptchaImage.axd" verb="GET,HEAD" type="Infragistics.Web.UI.EditorControls.CaptchaImageHandler"
validate="true" />
</httpHandlers>
If you have this, and you still don’t see the image then this issue might be related to the “Applciation pool” configuration in IIS. For CLR2 and 35, the application pool should be set to “Classic .NET AppPool” in Basic Settings of the Application in IIS (take a look at the attached image). When using CLR4 the application pool should be “ASP.NET v4.0 Classic”.
Hope this helps.
Regards,
Lyuba Petrova
Developer Support Engineer
Infragistics
www.infragistics.com/support
Hi there, I need my application to run in integrated mode. How come webcapcha can't run in this mode with CRL4? Any suggestions or workarounds please?
Thanks,
Jamie Attwood
Anyone ever help with this? CLR4 Integrated Mode? My captcha doesnt show the image either and I cannot change the application pool or my whole site doesnt work.
I saw other people using some <validation> tag in the config file to make things work for other captcha controls. Is there a workaround like this for the Infragistics captcha?
Just wondering why no one has posted anything. I figured I should use the controls we paid for to develop a website. First control I use is the Captcha for .Net 4 but apparently it doesn't work for .Net 4. So now am I stuck trying to flush my project of all infragistics references and using some other control like recaptcha?
My point is this... if there are so many free options out there and myself as well as others are paying for an option, do you not think it should work better and also have more information posted on the forums?
If this isn't resolved and I have to go to a free control, then I think it would be time to just use the .Net controls that come with Visual Studio. Less headaches, more info online.
FYI for anyone needing a solution to this that decided to keep using IG controls. I took someone elses idea from another control set and used this... now it works on integrated mode ASP.Net 4. I copied a few tags above the actual code needed (handlers) to show you where I put it in my web.config file.
<system.webServer> <modules runAllManagedModulesForAllRequests="true"> </modules> <validation validateIntegratedModeConfiguration="false" /> <handlers> <remove name="IGCaptcha"/> <add name="IGCaptcha" preCondition="integratedMode" verb="GET,HEAD" path="WebCaptchaImage.axd" type="Infragistics.Web.UI.EditorControls.CaptchaImageHandler"/> </handlers>
That worked great. I'd been scrtching my head as to why I didn't get in image. Luckily I didn't spend al day on it.
Thanks a bunch!
Tyson