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

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.