Import Parameter

This topic holds information about Import parameter.

Import.MaximumFileSize

Defines the maximum allowed size for import files in MB. See Import for details.

You need to configure the web.config to allow a file size larger than 4 MB for the parameter setting to take effect. To set the file size in the web.config file:

<httpRuntime requestValidationMode="4.5" maxRequestLength="10240" targetFramework="4.5" />
         <security>
          <requestFiltering>
          <!-- limit the maximum request size to 10MB -->
          <requestLimits maxAllowedContentLength="10485760" />
          </requestFiltering>
         </security>  
ASP.NET defaults are:
  • maxRequestLength: 4096KB (4 MB)
  • maxAllowedContentLength: 30000000 bytes (30 MB)

Default: 4

Type: Number