Capcha 2.0.1

Requires NuGet 2.0.1 or higher.

dotnet add package Capcha --version 2.0.1
NuGet\Install-Package Capcha -Version 2.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Capcha" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Capcha --version 2.0.1
#r "nuget: Capcha, 2.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Capcha as a Cake Addin
#addin nuget:?package=Capcha&version=2.0.1

// Install Capcha as a Cake Tool
#tool nuget:?package=Capcha&version=2.0.1

How to use this nuget in your mvc project

how to check capcha in controller.(write this code to your controller function)

using Capcha.HtmlHelpers;
// Code for validating the CAPTCHA  
if (this.CheckCapcha())
{ 
    *// do what ever here in case of capcha is valid*
}

how to display capcha in view(write this code to your view)

using Capcha.HtmlHelpers;
  @using Capcha.HtmlHelpers; //import this library on top
  @Html.Captcha(5) // if you want to display capcha with 5 char. replace 5 to your appropriate number to display n length capcha.
  @Html.MathCaptcha()  // if you want to display capcha as maths formula like (5+2=?),(25+45=?),etc.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.1 1,678 8/30/2018
2.0.0 766 8/29/2018
1.0.0 758 8/29/2018

This package is used for generate and validate case sensetive capcha using C# MVC.