How can I disable client-side form validation in my ASP.NET Core 1.1 app? But I need the server-side one.
How can I disable client-side form validation in my ASP.NET Core 1.1 app? But I need the server-side one.
In Razor Pages
services.Configure<HtmlHelperOptions>(o => o.ClientValidationEnabled = false);