What is a CAPTCHA system that is compatible with ASP.NET MVC ? Are there any good examples out there?
Thanks.
What is a CAPTCHA system that is compatible with ASP.NET MVC ? Are there any good examples out there?
Thanks.
Stack overflow, which is written using asp.net MVC, uses re-captcha. You can find out more about re-captcha at this link and even watch Jeff talk about re-captcha within stackoverflow during his talk at PDC.
Check out RecaptchaMvc. It's a framework that uses the reCAPTCHA service and ASP.NET MVC.
I wrapped a captcha library I found in a service interface
public interface ICaptchaProvider
{
void Render(Stream stream);
bool Verify(string text);
}
and used Unity to build up the controller. See details:
http://www.agileatwork.com/captcha-and-inversion-of-control/
This is a great tutorial on using reCaptcha in MVC and works with the currently newest release.
Here is free MvcCaptcha library: http://www.smartsoftwarebits.com/mvccaptcha
And here is the article how to use it:http://www.smartsoftwarebits.com/mvccaptcha/91-mvccaptcha-getting-started-howto