Disable Session from Master Page - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T16:35:54Z http://stackoverflow.com/feeds/question/958687 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/958687/disable-session-from-master-page 0 Disable Session from Master Page niaher 2009-06-06T00:49:26Z 2009-06-06T01:34:48Z <p>In ASP.NET, I would like to disable session state from master page, however @Master directive doesn't have EnableSessionState attribute as @Page does. Is there any workaround?</p> http://stackoverflow.com/questions/958687/disable-session-from-master-page/958729#958729 2 Answer by russau for Disable Session from Master Page russau 2009-06-06T01:09:47Z 2009-06-06T01:09:47Z <p>EnableSessionState needs to be done at a page level - as your masterpage will be used on many pages.</p> <p>Do you want turn off session across the whole site? In your web.config you can do this:</p> <pre><code>&lt;sessionState mode="off" /&gt; </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/h6bb9cz9.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/h6bb9cz9.aspx</a></p> http://stackoverflow.com/questions/958687/disable-session-from-master-page/958778#958778 2 Answer by jrista for Disable Session from Master Page jrista 2009-06-06T01:34:48Z 2009-06-06T01:34:48Z <p>To continue where russau left off, if you need to be able to configure only a subset of pages, then you could use locational configuration to do it. You would need to put the pages that need to have session state turned off in a common location, then use the following (where path is ~/nosessionstate/):</p> <pre><code>&lt;location path="nosessionstate"&gt; &lt;system.web&gt; &lt;sessionState mode="Off" /&gt; &lt;/system.web&gt; &lt;/location&gt; </code></pre> <p>If you are unable to group all of the pages together in a single location, you could have multiple location elements for each path. However, if your pages must be grouped with other pages that do need session state, then your only option is to configure it on a per-page basis.</p>