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>


     

  • 相关阅读:
    js apply 和call的区别
    TensorFlow 便捷的实现机器学习 三
    logistic regression model
    特征工程
    生成模式以及判别模式
    PCA降维技术
    TensorFlow 入门之手写识别CNN 三
    机器学习学习笔记1
    TensorFlow 入门之手写识别(MNIST) softmax算法 二
    TensorFlow 入门之手写识别(MNIST) 数据处理 一
  • 原文地址:https://www.cnblogs.com/KingStar/p/2280621.html
Copyright © 2011-2022 走看看