I have an MVC 5 application. I have used Jqgrid at multiple places. Recently, we have decided to move from Inproc session state to Outproc/State Server session state. But, after migrating, data stopped getting loaded in my Jqgrid. I tried using the web developer tool to check if any error is getting logged, but I am not getting any error there.
This is the change I have made in my web.config:
<sessionState mode="StateServer"
stateConnectionString="tcpip=127.0.0.1:42424"
cookieless="false"
timeout="20"/>
Everything else works as expected. Am I missing out on some setting? Please help.
Thanks in Advance.