.Net进程外session配置
配置步骤:
1、开启 ASP.NET状态服务:cmd状态下:services.msc
2、配置web.config文件,在system.web下加入如下配置
1 <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424">
3、补充如果是远程,会报如下错误
注册表中需改状态值cmd命令下:regedit;
路径:HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\aspnet_state\Parameters
0:只能自己访问;1:其他机器也可以访问当前的服务状态
搞定~