IT/ASP.NET
[MVC5] json 길이 변경 설정 (최대값)
GeunChoi
2020. 12. 23. 17:10
728x90
Web.config 파일에 해당 설정 추가
<configuration>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="2147483647" />
</webServices>
</scripting>
</system.web.extensions>
</configuration>