Originally Posted by
lweedop
Robert,
I'm not finding the line of code to which you are referring in my web.config. I see several other keys such as EncryptKey, DBSQLServerLocaleSetting, and SiteDownForMaintenance to name a few. These are all between the <appSettings> tags. Is the MaxHttpCollectionKeys key something I need to add?
Thank you for the heads up on the security concerns. I'll be sure to consider it carefully before I make any changes.
Lyndsey
Yes, go ahead and add it before the appSettings closing tag in your web.config. For example:
Code:
<add key="aspnet:MaxHttpCollectionKeys" value="2000" />
</appSettings>
Try starting with 2000, and increasing the value if it doesn't work. Since you did not already have the key, it would have defaulted to 1000.
Let me know if that works out.