Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8006771
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T17:37:23+00:00 2026-06-04T17:37:23+00:00

MVC3 added a good opportunity to make sessionless controllers using [SessionState(SessionStateBehavior.Disabled)] attribute. That’s great

  • 0

MVC3 added a good opportunity to make sessionless controllers using [SessionState(SessionStateBehavior.Disabled)] attribute. That’s great but not flexible because you cannot set session state for each controller method and also you cannot enable it by condition.

Is it possible to enable session state for authenticated users only or by some other custom condition?
I.e. PHP has a great feature.
if (!isset($_SESSION)) session_start();
That would be nice to find something like that

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T17:37:25+00:00Added an answer on June 4, 2026 at 5:37 pm

    You could override the default controller factory and more specifically the GetControllerSessionBehavior method:

    public class MyControllerFactory : DefaultControllerFactory
    {
        protected override SessionStateBehavior GetControllerSessionBehavior(RequestContext requestContext, Type controllerType)
        {
            if (controllerType == null)
            {
                return SessionStateBehavior.Default;
            }
    
            if (requestContext.HttpContext.User.Identity.IsAuthenticated)
            {
                // enable session if there's an authenticated user
                return SessionStateBehavior.Required;
            }
    
            return SessionStateBehavior.Disabled;
        }
    }
    

    and in Application_Start replace the default controller factory with the custom one:

    ControllerBuilder.Current.SetControllerFactory(new MyControllerFactory());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am building an applicaiton using asp.net mvc3. I added two layers to this
Creating MVC3 Razor Helper like Helper.BeginForm() says that it can be done using extension
I am using MVC3 and added model validation with required attributes. Then I have
Using MVC3 and the StringLength validation attribute on a property of type MyType<string> who's
I'm using MVC3 with unobtrusive validation. I have a field that the user is
I have created an MVC3 application and added cutomerrors attribute on in web.config. It
I have added an MVC3 web application to an existing website that consists of
I'm integrating CIM into an MVC3 app. I've added a service reference using the
Environment: MVC3 SqlMemberShipProvider I added an empty public void Application_AuthenticateRequest(object sender, EventArgs e) {}
MVC3 and Entity framework newbie here. I'm trying to write a controller that will

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.