StateServer sessionState and JQGrid

56 Views Asked by At

My users are constantly logged off the web app, so I am trying to use <sessionState mode="StateServer" cookieless="false" timeout="480" /> but I get a server error 500 because JQGrid cannot be serialized. Any ideas?

2

There are 2 best solutions below

0
On BEST ANSWER

I stopped using

Session["MyGridState"] = model.MyGrid.GetState();
1
On

Change Webconfig sessionState to InProc and change IIS WorkerProcess to 1

"<system.web>    
<sessionState mode="InProc" timeout="25"></sessionState>