zoukankan      html  css  js  c++  java
  • 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>


     

  • 相关阅读:
    Android_自定义适配器
    Android_ListView
    Android_布局
    Android_基础控件
    Android_基础
    PHP框架_ThinkPHP数据库
    PHP框架_ThinkPHP基础
    PHP框架_Smarty_实现登录功能
    PHP框架_Smarty
    PHP文件上传
  • 原文地址:https://www.cnblogs.com/KingStar/p/2280621.html
Copyright © 2011-2022 走看看