Home »
Code Examples »
ASP.Net Code Examples
ASP.Net - How to set the MaxJsonLength property on your web.config? Code Example
The code for How to set the MaxJsonLength property on your web.config?
<configuration>
<system.web.extensions>
<scripting>
<webServices>
<jsonSerialization maxJsonLength="50000000"/>
</webServices>
</scripting>
</system.web.extensions>
</configuration>
Code by IncludeHelp,
on February 28, 2023 08:06