-->

How to implement simple Captcha in MVC4 application


Introduction

In this post, I explain How to implement simple Captcha in asp.net MVC 4 Application.

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 : Create a Class (Module)

Go to Solution Explorer > Right Click on Modules folder > Add > Class > Enter Class name > Add.


  1. namespace MVCCustomCaptcha.Models
  2. {
  3. public class FeedbackModel
  4. {
  5. public string EmailID { get; set; }
  6. public string Query { get; set; }
  7. }
  8. }

Step-3: Add a reference of "SRVTextToImage.dll".

Download SRVTextToImage.dll
Go to Solution Explorer > Right Click on References > Add Reference... > Browse > select "SRVTextToImage.dll" > OK.

Step-4: Add a new Controller.

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

Step-5: Add new action into your controller for Get Captcha Image.

Here I have added "GetCaptchaImage" Action into "CaptchaController" Controller. Please write this following code

  1. // This action for get Captcha Image
  2. [HttpGet]
  3. [OutputCache(NoStore=true, Duration = 0, VaryByParam="None")] // This is for output cache false
  4. public FileResult GetCaptchaImage()
  5. {
  6. CaptchaRandomImage CI = new CaptchaRandomImage();
  7. this.Session["CaptchaImageText"] = CI.GetRandomString(5); // here 5 means I want to get 5 char long captcha
  8. //CI.GenerateImage(this.Session["CaptchaImageText"].ToString(), 300, 75);
  9. // Or We can use another one for get custom color Captcha Image
  10. CI.GenerateImage(this.Session["CaptchaImageText"].ToString(), 300, 75, Color.DarkGray, Color.White);
  11. MemoryStream stream = new MemoryStream();
  12. CI.Image.Save(stream, ImageFormat.Png);
  13. stream.Seek(0, SeekOrigin.Begin);
  14. return new FileStreamResult(stream, "image/png");
  15. }

Step-6: Add another action into your controller for Get Method of the page

Here I have added "FeedbackForm" Action into "CaptchaController" Controller. Please write this following code

  1. public ActionResult FeedbackForm()
  2. {
  3. return View();
  4. }

Step-7: Add view for the Action & design.

Right Click on Action Method (here right click on form action) > Add View... > Enter View Name > Select View Engine (Razor) > Check "Create a strong-typed view" > Select your model class > Add.
[N: B: Please Rebuild solution before add view.]
Complete View
  1. @model MVCCustomCaptcha.Models.FeedbackModel
  2. @{
  3. ViewBag.Title = "Feedback Form";
  4. }
  5.  
  6. <h2>FeedbackForm</h2>
  7.  
  8. @using (Html.BeginForm()) {
  9. @Html.ValidationSummary(true)
  10. @Html.AntiForgeryToken()
  11. <fieldset>
  12. <legend>Feedback </legend>
  13.  
  14. <div class="editor-label">
  15. @Html.LabelFor(model => model.EmailID)
  16. </div>
  17. <div class="editor-field">
  18. @Html.EditorFor(model => model.EmailID)
  19. @Html.ValidationMessageFor(model => model.EmailID)
  20. </div>
  21.  
  22. <div class="editor-label">
  23. @Html.LabelFor(model => model.Query)
  24. </div>
  25. <div class="editor-field">
  26. @Html.EditorFor(model => model.Query)
  27. @Html.ValidationMessageFor(model => model.Query)
  28. </div>
  29. <div class="editor-label">
  30. Captcha Image
  31. </div>
  32. <div class="editor-field">
  33. <img src="@Url.Action("GetCaptchaImage","Captcha")" />
  34. </div>
  35. <div class="editor-field">
  36. <input type="text" name="CaptchaText" id="CaptchaText" value="@ViewBag.CaptchaText" />
  37. </div>
  38. <p>
  39. <input type="submit" value="Create" />
  40. </p>
  41. <div>
  42. @if (ViewBag.Message != null)
  43. {
  44. <div style="border: 1px solid rgb(141, 27, 27); width:300px;padding: 5px;">
  45. @ViewBag.Message
  46. </div>
  47. }
  48. </div>
  49. </fieldset>
  50. }
  51.  
  52. <div>
  53. @Html.ActionLink("Back to List", "Index")
  54. </div>
  55.  
  56. @section Scripts {
  57. @Scripts.Render("~/bundles/jqueryval")
  58. }
  59.  

Step-8: Add another action into your controller for POST Method and Validate Captch

Here I have added "FeedbackForm" Action into "CaptchaController" Controller for POST Action. Please write this following code

  1. [HttpPost]
  2. [ValidateAntiForgeryToken]
  3. public ActionResult FeedbackForm(FeedbackModel FM, string CaptchaText)
  4. {
  5. if (this.Session["CaptchaImageText"].ToString() == CaptchaText)
  6. {
  7. ViewBag.Message = "Catcha Validation Success!";
  8. }
  9. else
  10. {
  11. ViewBag.Message = "Catcha Validation Failed!";
  12. }
  13. return View(FM);
  14. }

Step-9: Run Application.

Download Application


 How to implement simple Captcha in  MVC4 application



Related Post








  • How to implement Google reCaptcha in aso.net MVC application without API
  • how to use google recaptcha in asp.net.
  • How to implement simple Captcha in ASP.Net.


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