-->

how to use google recaptcha in asp.net.




Introduction

In this post, I am explain how to use google recaptcha in asp.net.

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 use google recaptcha in asp.net

Steps :

Step - 1 : Create New Project.

Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click 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: Add a Webpage and Design for use Google Captcha.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select web form/ web form using master page under Web > Enter page name > Add.

HTML Code
  1. <h3>Contact Us form in ASP.NET with Google Captcha</h3>
  2. <div>
  3. <table>
  4. <tr>
  5. <td>Full Name:</td>
  6. <td>
  7. <asp:TextBox ID="txtFullName" runat="server" />
  8. </td>
  9. </tr>
  10. <tr>
  11. <td>Email:</td>
  12. <td>
  13. <asp:TextBox ID="txtEmail" runat="server" />
  14. </td>
  15. </tr>
  16. <tr>
  17. <td>Contact No:</td>
  18. <td>
  19. <asp:TextBox ID="txtContactNo" runat="server" />
  20. </td>
  21. </tr>
  22. <tr>
  23. <td>Query</td>
  24. <td>
  25. <asp:TextBox ID="txtQuery" runat="server" TextMode="MultiLine" Height="66px" Width="297px" />
  26. </td>
  27. </tr>
  28. <tr>
  29. <td>Security Code</td>
  30. <td>
  31. <%-- We Can get the code from : https://developers.google.com/recaptcha/docs/display --%> <%-- Here Please place you public key(google captcha public key) your_public_key--%>
  32. <%-- Here Please place you public key(google captcha public key) your_public_key--%>
  33. <script type="text/javascript"
  34. src="http://www.google.com/recaptcha/api/challenge?k=your_public_key">
  35. </script>
  36. <noscript>
  37. <iframe src="http://www.google.com/recaptcha/api/noscript?k=your_public_key"
  38. height="300" width="500" frameborder="0"></iframe><br>
  39. <textarea name="recaptcha_challenge_field" rows="3" cols="40">
  40. </textarea>
  41. <input type="hidden" name="recaptcha_response_field"
  42. value="manual_challenge">
  43. </noscript>
  44. </td>
  45. </tr>
  46. <tr>
  47. <td></td>
  48. <td>
  49. <asp:Button ID="btnSubmit" runat="server" Text="Submit" OnClick="btnSubmit_Click" />
  50. </td>
  51. </tr>
  52. <tr>
  53. <td>&nbsp;</td>
  54. <td>
  55. <asp:Label ID="lblMsg" runat="server" ></asp:Label>
  56. </td>
  57. </tr>
  58. </table>
  59. </div>

Step-7: Write this into Button Click event for validate captcha & Save data to database.


  1. protected void btnSubmit_Click(object sender, EventArgs e)
  2. {
  3. if (txtFullName.Text.Trim() == "")
  4. {
  5. lblMsg.Text = "Please provide your full name";
  6. return;
  7. }
  8.  
  9. // here we will check captcha code is valid or not
  10.  
  11. var isValidDic = CaptchaValidate();
  12. string val = "";
  13. try
  14. {
  15. isValidDic.TryGetValue(true, out val);
  16. if (val == null)
  17. {
  18. lblMsg.Text = "provided security code is not valid! please try again.";
  19. return;
  20. }
  21. }
  22. catch (Exception ex)
  23. {
  24. lblMsg.Text = "provided security code is not valid! please try again.";
  25. return;
  26. }
  27.  
  28. ContactQuery c = new ContactQuery
  29. {
  30. Fullname = txtFullName.Text.Trim(),
  31. EmailID = txtEmail.Text.Trim(),
  32. ContactNo = txtContactNo.Text.Trim(),
  33. Query = txtQuery.Text.Trim()
  34. };
  35. // here MyDatabaseEntities is dbContext
  36. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  37. {
  38. dc.ContactQueries.Add(c);
  39. dc.SaveChanges();
  40. lblMsg.Text = "Successfully Done!";
  41. txtFullName.Text = "";
  42. txtEmail.Text = "";
  43. txtContactNo.Text = "";
  44. txtQuery.Text = "";
  45. }
  46. }

and here is the function...
  1. private Dictionary<bool,string> CaptchaValidate()
  2. {
  3. // Validate Captcha here
  4. var isValidDic = new Dictionary<bool, string>();
  5. string[] resultFromGoogle;
  6. HttpWebRequest req = (HttpWebRequest)WebRequest.Create("http://www.google.com/recaptcha/api/verify");
  7.  
  8. req.ProtocolVersion = HttpVersion.Version10;
  9. req.Timeout = 0x7530;
  10. req.Method = "POST";
  11. req.UserAgent = "reCAPTCHA/ASP.NET";
  12. req.ContentType = "application/x-www-form-urlencoded";
  13. string Fdata = string.Format("privatekey={0}&remoteip={1}&challenge={2}&response={3}",
  14. new object[]{
  15. HttpUtility.UrlEncode("your_private_key"),
  16. HttpUtility.UrlEncode(Dns.GetHostEntry(Dns.GetHostName()).AddressList[1].ToString()),
  17. HttpUtility.UrlEncode(Request.Form["recaptcha_challenge_field"]),
  18. HttpUtility.UrlEncode(Request.Form["recaptcha_response_field"])
  19. });
  20.  
  21. byte[] resData = Encoding.ASCII.GetBytes(Fdata);
  22. using (Stream rStream = req.GetRequestStream())
  23. {
  24. rStream.Write(resData, 0, resData.Length);
  25. }
  26. try
  27. {
  28. using (WebResponse wResponse = req.GetResponse())
  29. {
  30. using (TextReader readStream = new StreamReader(wResponse.GetResponseStream(), Encoding.UTF8))
  31. {
  32. resultFromGoogle = readStream.ReadToEnd().Split(new string[] { "\n", @"\n" }, StringSplitOptions.RemoveEmptyEntries);
  33. }
  34. }
  35. }
  36. catch (WebException ex)
  37. {
  38. isValidDic.Add(false, ex.InnerException.ToString());
  39. return isValidDic;
  40. }
  41.  
  42. isValidDic.Add(resultFromGoogle[0] == "true", resultFromGoogle[1]);
  43. return isValidDic;
  44. }

Step-8: Run Application.


Download     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: