Tweet In my previous post on ASP MVC I showed How To Add Captcha to ASP MVC Web Application, but even if you use captcha you still want to make sure the user email is real and not just a fake one. In order to make sure the user has gave you his real email you need to use Email Confirmation mechanism to your site. ASP MVC is doing some of the work for us, when a user is register to your site is assign with a unique ID (Guid) property called - ProviderUserKey I’ll use this value to verify the...
Tweet Captcha is a type of challenge-response test used in computing as an attempt to ensure that the response is generated by a person. When building public web sites captcha is very important to avoid script and bots running on your web site. First go to reCAPTCHA site and register for unique Key, then Download reCAPTCHA .NET Library . Save you Public and Private keys safely. Now, Let’s start new ASP.NET MVC 3 Web Application Project in Visual Studio 2010 Download Demo Project Choose to create...