SharePoint Session 值丢失

1.找到该站点的Config 文件,设置EnableSessionState=“True”,

<pages enableSessionState="true" enableViewState="true" enableViewStateMac="true" validateRequest="false" pageParserFilterType="Microsoft.SharePoint.ApplicationRuntime.SPPageParserFilter, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" asyncTimeout="7">


2.取消 <add name="Session" type="System.Web.SessionState.SessionStateModule"/> 的注释
<httpModules>
     
<clear />
     
<add name="SPRequest" type="Microsoft.SharePoint.ApplicationRuntime.SPRequestModule, Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" />
     
<add name="OutputCache" type="System.Web.Caching.OutputCacheModule" />
     
<add name="FormsAuthentication" type="System.Web.Security.FormsAuthenticationModule" />
     
<add name="UrlAuthorization" type="System.Web.Security.UrlAuthorizationModule" />
     
<add name="WindowsAuthentication" type="System.Web.Security.WindowsAuthenticationModule" />
     
<add name="RoleManager" type="System.Web.Security.RoleManagerModule" />
     
<add name="Session" type="System.Web.SessionState.SessionStateModule"/>
   
</httpModules>


 

posted @ 2011-12-08 13:27  StarWang  阅读(278)  评论(0编辑  收藏  举报