Saturday, July 19, 2014

How you can disable session?

If we set session Mode="off" in web.config, session will be disabled in the application. For this, we need to configure web.config the following way:
Code:
<configuration>
  <sessionstate  Mode="off"/>
</configuration>

Related Posts:

0 comments:

Post a Comment