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>


     

  • 相关阅读:
    perl 获取铜板街页码
    $response->decoded_content 和$response->content
    基于Netty5.0高级案例之请求响应同步通信
    [Err] 1091
    [Err] 23000
    [Err] 42000
    perl 爬取 find_by_tag_name
    perl 爬取html findvalues 方法
    perl 安装DBI和DBD
    js setTimeout 参数传递使用介绍
  • 原文地址:https://www.cnblogs.com/KingStar/p/2280621.html
Copyright © 2011-2022 走看看