Frequently Asked Questions
IIS Increase Max Request lengths WCF data service - Maximum request length for Query string
Max Request lengths
http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits
Go to IIS manager
Request Filtering -> Query Strings -> Right Click -> Edit Feature Settings
Also, web.config
debug="true"
targetFramework="4.5" />
targetFramework="4.5"
maxRequestLength="2097151"
maxQueryStringLength="32768"
maxUrlLength="65536"
useFullyQualifiedRedirectUrl="true"
executionTimeout="14400" />
http://www.iis.net/configreference/system.webserver/security/requestfiltering/requestlimits
Go to IIS manager
Request Filtering -> Query Strings -> Right Click -> Edit Feature Settings
Also, web.config
debug="true"
targetFramework="4.5" />
targetFramework="4.5"
maxRequestLength="2097151"
maxQueryStringLength="32768"
maxUrlLength="65536"
useFullyQualifiedRedirectUrl="true"
executionTimeout="14400" />
Last updated Thu, Jan 5 2017 5:30pm