I have created one report with 4 parameters. one of the parameters having greater than 1000 item values.I have following issues
If I reduce the number of item values of parameter to 950 Report will work fine . Is there any idea to resolve the problems without reducing number of item values of parameters?
This should be related to the MaxHttpCollectionKeys
default value of 1000
Add the following setting in the appSettings section of the Reporting Services config file:
<appSettings>
<add key="aspnet:MaxHttpCollectionKeys" value="5000" />
</appSettings>