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>


     

  • 相关阅读:
    24. orcle创建备份表
    23. oralce11g导出dmp然后导入Oracle10g
    模板
    日记集
    Outlook 2013 电子邮件账户设置备份与恢复
    Firefox恢复书签
    Windows 7 Professional安装多语言包
    CentOS下成功修复了Windows的grub引导
    CentOS 7修复MBR和GRUB
    从移动硬盘开机,引导VHD(Win10)
  • 原文地址:https://www.cnblogs.com/KingStar/p/2280621.html
Copyright © 2011-2022 走看看