ASP.NET session state and multiple worker processes

前端 未结 4 1842
名媛妹妹
名媛妹妹 2020-12-05 02:50

I need to understand something about ASP.NET session state, as it applies to IIS 7 and ASP.net 3.5.

If an application is configured to use in-process session state,

4条回答
  •  执笔经年
    2020-12-05 03:24

    More than one worker process is a "web garden." In-process session state will not work correctly. You'll need to use either a single worker process for your web app, or use a session state server, or SQL Server for session state.

提交回复
热议问题