...
Edit the web.config file. This file is at the root of the StudyTrax application (that is, the folder that the StudyTrax web app is pointing to in IIS). Edit the web.config file with notepad and search for appSettings. In the appSettings section add the following line:
No Format |
---|
<add key="aspnet:MaxHttpCollectionKeys" value="50000" /> |
Below is an example of the appSettings section. Depending on your version of StudyTRAX, there may be more items.
No Format |
---|
<appSettings>
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
<add key="aspnet:MaxHttpCollectionKeys" value="50000" />
</appSettings>
|
Warning | ||
---|---|---|
| ||
Changing the web.config file causes IIS to restart the application. This means that all users on StudyTRAX will be logged off. Thus, this change needs to be done at a time when no users are on the system. |
You can get additional information at the following links: