|
|
@ -445,8 +445,8 @@ public abstract class ModuleBase<T> : AbpModule where T : AbpModule |
|
|
|
{ |
|
|
|
ServiceConfigurationContext.Services.Configure<FormOptions>(options => |
|
|
|
{ |
|
|
|
options.ValueCountLimit = 5000; // 5000 items max
|
|
|
|
options.ValueLengthLimit = 1024 * 1024 * 100; // 100MB max len form data
|
|
|
|
options.ValueCountLimit = int.MaxValue; // 5000 items max
|
|
|
|
options.ValueLengthLimit = 1024 * 1024 * 1000; // 100MB max len form data
|
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|