Skip to content

sannlynnhtun-coding/BlazorMvcLoginApp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

https://captcha.com/captcha-examples.html

https://captcha.com/doc/aspnet/net-captcha-options.html

PM> Install-Package Captcha

ASP.NET Core : Synchronous operations are disallowed. Call WriteAsync or set AllowSynchronousIO to true instead

public void ConfigureServices(IServiceCollection services)
{
    // If using Kestrel:
    services.Configure<KestrelServerOptions>(options =>
    {
        options.AllowSynchronousIO = true;
    });

    // If using IIS:
    services.Configure<IISServerOptions>(options =>
    {
        options.AllowSynchronousIO = true;
    });
}

About

.NET 7 ASP.NET Core Blazor with MVC Login using Captcha

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages