By default dotnet core limits the form element count to 1024. To submit forms with more elements, increase the limit in the ConfigureServices() method of the Startup.cs file:
services.Configure<FormOptions>(x => x.ValueCountLimit = 4096);
Knowledge Base for IT Professionals, Teachers and Astronauts
By default dotnet core limits the form element count to 1024. To submit forms with more elements, increase the limit in the ConfigureServices() method of the Startup.cs file:
services.Configure<FormOptions>(x => x.ValueCountLimit = 4096);