Skip to content Skip to sidebar Skip to footer

Generic Handler Parameter Size Limit?

I have some JavaScript code which generates a very long script and than posts it back to the server to a generic handler for creating a csv. My JavaScript Code for sending the data

Solution 1:

You can set the maximum allowed content length in the web.config. The default value is 30,000,000 bytes:

<system.webServer>
  <security>
    <requestFiltering>
      <requestLimits maxAllowedContentLength="[maxLengthInBytes]" />
    </requestFiltering>
  </security>
  ...
</system.webServer>

Post a Comment for "Generic Handler Parameter Size Limit?"