Form & Input Content Type Limit Exceed (1024) #14817
Replies: 4 comments
-
I think the issue is not related to OC, the HTTP has a limited amount of data to be sent in the same request |
Beta Was this translation helpful? Give feedback.
-
Is there any way that we can fix this issue, because it is kind of becoming a deal breaker for me. |
Beta Was this translation helpful? Give feedback.
-
Try to configure services.Configure<FormOptions>(options =>
{
options.ValueCountLimit = int.MaxValue;
}); |
Beta Was this translation helpful? Give feedback.
-
As @hishamco mentioned this isn't an OC specific. This is ASP.NET. You may need to update both
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
### Describe the bug
ERROR:- " InvalidDataException: Form value count limit 1024 exceeded. "
I am seeing this error in my orchard CMS when I add too many " forms " and " input " content types on one single page.
Can you guys show me how to resolve this issue?
Thanks Regards
Beta Was this translation helpful? Give feedback.
All reactions