享受.NET
.NET的兄弟们,来吧,GO GO GO

只有在配置文件或 Page 指令中将启用会话状态设置为真时,才可以使用会话状态
或者是:
Session state can only be used when enableSessionState is set to true, either in a configuration file or in the Page directive. Please also make sure that System.Web.SessionStateModule or a custom session state module is included in the <configuration>\<system.web>\<httpModules> section in the application configuration.

后面告诉原因。

正确的做法是
Web.config 节sessionState 不要使用下面配置,
<sessionState mode="Off"/>,
而是用其他几种配置方式。(不设置的默认配置是 InProc。 )

然后在在这个 Web.config 中设置
<configuration>
 <system.web>
   <pages enableSessionState="false" />
 </system.web>
</configuration>

这样整个站点的页面默认是不打开Session的。
在你需要的页面的 使用如下 Page 设置
<%@ Page EnableSessionState="True"%>

或者在你需要打开Session的目录下,设置一个 web.config
<configuration>
 <system.web>
   <pages enableSessionState="true" />
 </system.web>
</configuration>

 

分析原因:
  <sessionState mode="Off"/>  是整个站点禁用了Session,你无法作特列处理。

另外,通过访问 System.Web.SessionState.HttpSessionState.Mode 属性的值,可以查看当前选定的会话状态。

上述知识点,不仅仅适用于 ASP.net 1.0 1.1 也适用于 2.0

posted on 2009-05-12 12:58  一过  阅读(1650)  评论(0编辑  收藏  举报