Disable ASP.NET's Session_End events?

admin

Administrator
#1
ScaleOut StateServer’s session provider will automatically register for expiration events in order to fire a web application’s Session_End event in Global.asax. To prevent this registration and to stop events from being delivered to Session_End, add the setting soss_RegisterForEvents with the value False to the application's web.config file, as follows:
Code:
<configuration>
  <appSettings>
    <add key="soss_RegisterForEvents" value="False"/>
  </appSettings>
</configuration>
 
Top