I am viewing SSRS report through asp.net reportviewer, I have 4 multi-value parameters in it, from them, two contains more than 600 values each.
Report loads correctly, but when i click on View Report Button, it gives "sys.webforms.pagerequestmanagerservererrorexception" error.
I have used below settings and restarted Reporting services also but its not working.
<appSettings>
<add key="aspnet:MaxHttpCollectionKeys" value="10000" />
<add key="aspnet:MaxJsonDeserializerMembers" value="10000" />
</appSettings>
and if i restrict query with top 50 in that both parameter, report works fine.
please help.