ASP.Net SessionState works when set to InProc but fails when set to StateServer
When allowing the SessionSate to remain in it's default state ie InProc, my website works fine after callbacks etc. When I change it to: <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" timeout="10" /> SessionSate is lost after callback. The ASP.Net State Server service is…