-->

How to implement Google reCaptcha in asp.net MVC application without API

Introduction

In this post, I am explain how to implement Google reCaptcha in asp.net MVC application without API.

Google reCAPTCHA  is a free service from Google that helps protect websites from spam and abuse that restricts the automated input sent by a system and allows only input from a real human.

We can create a CAPTCHA in many ways but Google provides a free reCAPTCHA with better security without any cost.

Let us learn about  how to implement Google reCaptcha in asp.net MVC application without API.

Steps :

Step - 1 : Create New Project.

Go to File > New > Project > Select asp.net MVC4 web application > Entry Application Name > Click OK > Select Internet Application > Select view engine Razor > OK

Step-2: Sign up & Generate Key for Google reCaptcha.

Go to http://www.google.com/recaptcha > Sign up for Google reCaptcha > Create Key(for Google reCaptcha).

Step-3: Add a Database.

Go to Solution Explorer > Right Click on App_Data folder > Add > New item > Select SQL Server Database Under Data > Enter Database name > Add.

Step-4: Create table for Save Data.

Open Database > Right Click on Table > Add New Table > Add Columns > Save > Enter table name > Ok.
In this example, I have used one tables as below


Step-5: Add Entity Data Model.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select ADO.net Entity Data Model under data > Enter model name > Add.
A popup window will come (Entity Data Model Wizard) > Select Generate from database > Next >
Chose your data connection > select your database > next > Select tables > enter Model Namespace > Finish.

Step-6: Create a Controller .

Go to Solution Explorer > Right Click on Controllers folder form Solution Explorer > Add > Controller > Enter Controller name > Select Templete "empty MVC Controller"> Add.

Here I have created a controller "ContactController"

Step-7: Add new action into your controller for Get Method

Here I have added "Query" Action into "Contact" Controller. Please write this following code

  1. namespace MVCGoogleReCaptcha.Controllers
  2. {
  3. public class ContactController : Controller
  4. {
  5. public ActionResult Query()
  6. {
  7. return View();
  8. }
  9. }
  10. }

[N:B: Rebuild your application here before Add View]

Step-8: Add view for your Action & design for create form.

Right Click on Action Method (here right click on Query action) > Add View... > Enter View Name > Select View Engine (Razor) > Check "Create a strong-typed view" > Select your model class > Select Scaffold templete "Create" > Add.
HTML Code (View)
  1. @model MVCGoogleReCaptcha.QueryData
  2.  
  3. @{
  4. ViewBag.Title = "Query";
  5. }
  6.  
  7. <h2>Query</h2>
  8.  
  9. @using (Html.BeginForm()) {
  10. @Html.ValidationSummary(true)
  11. if (ViewBag.Message != null)
  12. {
  13. <div style="font-weight:bold; color:red; border:1px solid black">
  14. @ViewBag.Message
  15. </div>
  16. }
  17. <fieldset>
  18. <legend>Query Data</legend>
  19.  
  20. <div class="editor-label">
  21. @Html.LabelFor(model => model.FullName)
  22. </div>
  23. <div class="editor-field">
  24. @Html.EditorFor(model => model.FullName)
  25. @Html.ValidationMessageFor(model => model.FullName)
  26. </div>
  27.  
  28. <div class="editor-label">
  29. @Html.LabelFor(model => model.EmailID)
  30. </div>
  31. <div class="editor-field">
  32. @Html.EditorFor(model => model.EmailID)
  33. @Html.ValidationMessageFor(model => model.EmailID)
  34. </div>
  35.  
  36. <div class="editor-label">
  37. @Html.LabelFor(model => model.ContactNo)
  38. </div>
  39. <div class="editor-field">
  40. @Html.EditorFor(model => model.ContactNo)
  41. @Html.ValidationMessageFor(model => model.ContactNo)
  42. </div>
  43.  
  44. <div class="editor-label">
  45. @Html.LabelFor(model => model.Query)
  46. </div>
  47. <div class="editor-field">
  48. @Html.EditorFor(model => model.Query)
  49. @Html.ValidationMessageFor(model => model.Query)
  50. </div>
  51. @* I Will Place Google Re-Captcha Here *@
  52. <div class="editor-label">
  53. Security Code
  54. </div>
  55. <div class="editor-label">
  56. @* You Can get the Script code from https://developers.google.com/recaptcha/docs/display *@
  57. <script type="text/javascript"
  58. src="http://www.google.com/recaptcha/api/challenge?k=your_public_key">
  59. </script>
  60. <noscript>
  61. <iframe src="http://www.google.com/recaptcha/api/noscript?k=your_public_key"
  62. height="300" width="500" frameborder="0"></iframe><br>
  63. <textarea name="recaptcha_challenge_field" rows="3" cols="40">
  64. </textarea>
  65. <input type="hidden" name="recaptcha_response_field"
  66. value="manual_challenge">
  67. </noscript>
  68. </div>
  69. <p>
  70. <input type="submit" value="Create" />
  71. </p>
  72. </fieldset>
  73. }
  74.  
  75. <div>
  76. @Html.ActionLink("Back to List", "Index")
  77. </div>
  78.  
  79. @section Scripts {
  80. @Scripts.Render("~/bundles/jqueryval")
  81. }

Step-9: Add new action into your controller for POST Method

Here I have added "Query" Action with Model Parameter (here "Contact") into "Contact" Controller. Please write this following code

  1. [HttpPost]
  2. public ActionResult Query(QueryData qd)
  3. {
  4. if (ModelState.IsValid)
  5. {
  6. // Here I will check is captcha code is valid or not
  7. bool isCaptchaCodeValid = false;
  8. string CaptchaMessage = "";
  9. isCaptchaCodeValid = GetCaptchaResponse(out CaptchaMessage);
  10.  
  11. if (isCaptchaCodeValid)
  12. {
  13. // Save Data Here
  14. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  15. {
  16. dc.QueryDatas.Add(qd);
  17. dc.SaveChanges();
  18. ModelState.Clear();
  19. qd = null;
  20. ViewBag.Message = "Query Saved Successfully";
  21. }
  22. }
  23. else
  24. {
  25. ViewBag.Message = CaptchaMessage;
  26. }
  27. }
  28. return View(qd);
  29. }

Here is the function for get response from google api about validation of captcha code.

  1. private bool GetCaptchaResponse(out string message)
  2. {
  3. bool flag = false;
  4. message = "";
  5.  
  6. string[] result;
  7. HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.google.com/recaptcha/api/verify");
  8. request.ProtocolVersion = HttpVersion.Version10;
  9. request.Timeout = 0x7530;
  10. request.Method = "POST";
  11. request.UserAgent = "reCAPTCHA/ASP.NET";
  12. request.ContentType = "application/x-www-form-urlencoded";
  13. string formData = string.Format(
  14. "privatekey={0}&remoteip={1}&challenge={2}&response={3}",
  15. new object[]{
  16. HttpUtility.UrlEncode("your_private_key"),
  17. HttpUtility.UrlEncode(Dns.GetHostEntry(Dns.GetHostName()).AddressList[1].ToString()),
  18. HttpUtility.UrlEncode(Request.Form["recaptcha_challenge_field"]),
  19. HttpUtility.UrlEncode(Request.Form["recaptcha_response_field"])
  20. });
  21. byte[] formbytes= Encoding.ASCII.GetBytes(formData);
  22.  
  23. using (System.IO.Stream requestStream = request.GetRequestStream())
  24. {
  25. requestStream.Write(formbytes, 0, formbytes.Length);
  26.  
  27. }
  28.  
  29. try
  30. {
  31. using (WebResponse httpResponse = request.GetResponse())
  32. {
  33. using (System.IO.TextReader readStream = new System.IO.StreamReader(httpResponse.GetResponseStream(),Encoding.UTF8))
  34. {
  35. result = readStream.ReadToEnd().Split(new string[] { "\n", @"\n" }, StringSplitOptions.RemoveEmptyEntries);
  36. message = result[1];
  37. flag = Convert.ToBoolean(result[0]);
  38. }
  39. }
  40. }
  41. catch (Exception ex)
  42. {
  43. message = ex.Message;
  44. return false;
  45. }
  46. return flag;
  47. }

Step-10: Run Application.

Download Application     Live Demo

Related post :




Hello ! My name is Sourav Mondal. I am a software developer working in Microsoft .NET technologies since 2010.

I like to share my working experience, research and knowledge through my site.

I love developing applications in Microsoft Technologies including Asp.Net webforms, mvc, winforms, c#.net, sql server, entity framework, Ajax, Jquery, web api, web service and more.

Related Posts: