进程外Session
StateServer的进程外Session
需要提前在服务中开启ASP.NET State Service服务
然后web.config中进行配置
<configuration> <system.web> <compilation debug="true" targetFramework="4.5" /> <httpRuntime targetFramework="4.5" /> <sessionState stateConnectionString="tcpip=127.0.0.1:42424" mode="StateServer"></sessionState> //这是具体配置 </system.web> </configuration>
SQLServer的进程外Session
需要提前在VS开发人员命令行中进行配置
aspnet_regsql -U 数据库登陆用户 -P 登陆密码 -ssadd -sstype c -d 数据库名称
然后web.config中进行配置
<configuration> <system.web> <compilation debug="true" targetFramework="4.5" /> <httpRuntime targetFramework="4.5" /> <sessionState sqlConnectionString="server=.;database=SessionDB;uid=sa;pwd=123456;" mode="SQLServer" allowCustomSqlDatabase="true"></sessionState> //具体配置 </system.web> </configuration>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。