vote up 0 vote down star

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?

flag

2 Answers

vote up 2 vote down check

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/):

<location path="nosessionstate">
    <system.web>
        <sessionState mode="Off" />
    </system.web>
</location>

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.

link|flag
vote up 2 vote down

EnableSessionState needs to be done at a page level - as your masterpage will be used on many pages.

Do you want turn off session across the whole site? In your web.config you can do this:

<sessionState  mode="off" />

http://msdn.microsoft.com/en-us/library/h6bb9cz9.aspx

link|flag
Thank you for your answer. Actually I don't want to completely disable session for the whole site. But just for some pages, which don't need it, as it will improve the performance. Btw I am using InProc mode; is disabling session for some pages that don't need it, going to better the performance? I am sure it will effect StateServer & SqlServer, but what about InProc? – niaher Jun 6 at 1:21
I haven't tested the difference - but i'd guess it's a negligible improvment. – russau Jun 6 at 1:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.