• 开启SharePoint页面的Session功能


    1、C:\Program Files\Common Files\Microsoft Shared\web server extensions\60\TEMPLATE\LAYOUTS目录里的 web.config文件里缺少一句话

    <add name="Session" type="System.Web.SessionState.SessionStateModule"/>


    加在<httpModules>里,加完之后的<httpModules>应该是这样的:

        <httpModules>
          
    <clear />
          
    <add name="OutputCache" type="System.Web.Caching.OutputCacheModule" />
          
    <add name="WindowsAuthentication" type="System.Web.Security.WindowsAuthenticationModule" />
           
    <add name="Session" type="System.Web.SessionState.SessionStateModule"/>
        
    </httpModules>

    2、在SPS门户所在IIS发布目录里,找到web.config ,修改Pages里的enableSessionState 为true ,修改后应该是这样的:
    <pages enableSessionState="true" enableViewState="true" enableViewStateMac="true" validateRequest="false" />

    WSS相关的更改方法见
    http://support.microsoft.com/default.aspx?scid=kb;en-us;837376
  • 相关阅读:
    django--orm操作
    路由
    django ----视图和路由
    DJango 前三天小结
    JQuery----操作01
    前端---JQuery初识
    前端----jsDOM
    前端---js02
    前端-----js
    面向对象
  • 原文地址:https://www.cnblogs.com/zygoses2gether/p/438781.html
Copyright © 2020-2023  润新知