我无法在SharePoint中使用无cookieless会话。每当我点击一个站点或子站点时,就会创建一个新的会话id,这并不符合预期的行为(它在URL中是可见的)。如何在SharePoint中使用无cookieless会话?
发布于 2010-11-15 19:55:21
web.config:
取消对以下行的注释:
<add name=”Session” type=”System.Web.SessionState.SessionStateModule” />修改以下行:
<pages enableSessionState=”true” … />aspnet_regsql.exe -S -d -ssadd -sstype c -E
其中:
<server_name> is the database server where your database is located
<database_name> is the content database of your shared services provider运行aspnet_regsql.exe /?有关其余选项的详细信息,请参阅
https://stackoverflow.com/questions/4182779
复制相似问题