我在 system.web 部分下的 web.config 中有一个 .NET MVC4 应用程序,其中包含以下内容:
<sessionState
mode="SQLServer"
sqlConnectionString="Data Source=db;userid=user;password=pass;"
cookieless="false"
timeout="20"/>
当我运行该站点时,我看不到页面上的 cookie,也没有保存在数据库中。如果我改为cookieless="true"
会话 id 保存在数据库中。
如何让 SqlServer 会话状态与 cookie 一起使用?