我有一个变量varstore,它使用JSON从视图发送到控制器。变量的问题是它可以在30000个字符附近有很长的字符串。我的JSON脚本如下
$.ajax({
url: "../Home/GridSubmit",
data: { "ddlstore": varstore, },
contentType: "application/json; charset=utf-8",
traditional: true
})
我将web.config配置为以下内容;
<webServices>
<jsonSerialization maxJsonLength="2147483644"/>
</webServices>
<httpRuntime maxQueryStringLength="500000" maxRequestLength="500000"/>`
点击操作按钮后,出现以下错误:
发生错误错误请求-URI太长
请帮忙