'Captcha image not showing in my asp.net mvc application
@using CaptchaMvc.HtmlHelpers
<!DOCTYPE html>
<html lang="en">
<head>
@Scripts.Render("~/bundles/jquery", "~/bundles/modernizr")
@Scripts.Render("~/bundles/jqueryval")
@Scripts.Render("~/bundles/bootstrap")
@Styles.Render("~/Content/css")
</head>
<body>
<div>
<div>
@Html.Captcha(4)
<p class="Error"> @ViewBag.ErrMessage </p>
</div>
</div>
</body>
</html>
I am using simple captcha in login page but when application loads first login page captcha image not showing
Solution 1:[1]
You need to be registered, and have some specific code that you can get by going to the link below:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | ph3b3 |
