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

  • SEARCH
  • Home
  • 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 8983253
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T20:47:44+00:00 2026-06-15T20:47:44+00:00

I have an ASP.NET MVC4 application where I am implementing sessionTimeout like: <configuration> <system.web>

  • 0

I have an ASP.NET MVC4 application where I am implementing sessionTimeout like:

<configuration>
  <system.web>
    <sessionState timeout="2"></sessionState>
  </system.web>
</configuration>

And in authentication:

<configuration>
  <system.web>
    <authentication mode="Forms">
      <forms loginUrl="~/Account/LogOn" timeout="1" />
    </authentication>
  </system.web>
</configuration>

After the session has expired (2 mins), I need to redirect to the logon page, but the redirection doesn’t occur.

How can I change the code so that it will redirect?

  • 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-15T20:47:45+00:00Added an answer on June 15, 2026 at 8:47 pm

    One way is that
    In case of Session Expire, in every action you have to check its session and if it is null then redirect to Login page.

    But this is very hectic method
    To over come this you need to create your own ActionFilterAttribute which will do this, you just need to add this attribute in every action method.

    Here is the Class which overrides ActionFilterAttribute.

    public class SessionExpireFilterAttribute : ActionFilterAttribute
        {
            public override void OnActionExecuting(ActionExecutingContext filterContext)
            {
                HttpContext ctx = HttpContext.Current;
    
                // check if session is supported
                CurrentCustomer objCurrentCustomer = new CurrentCustomer();
                objCurrentCustomer = ((CurrentCustomer)SessionStore.GetSessionValue(SessionStore.Customer));
                if (objCurrentCustomer == null)
                {
                    // check if a new session id was generated
                    filterContext.Result = new RedirectResult("~/Users/Login");
                    return;
                }
    
                base.OnActionExecuting(filterContext);
            }
        }
    

    Then in action just add this attribute like so:

    [SessionExpire]
    public ActionResult Index()
    {
         return Index();
    }
    

    This will do you work.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an ASP.NET MVC4 sub web application added in to an existing ASP.NET
Hello everybody i have asp.net mvc4 application where i made countdown something like this:
I have Ninject working nicely in an ASP.NET MVC3 web application. I'd like to
I have been writing an application using ASP.Net MVC4, where the majority of the
I have asp.net mvc 4 web application project on my server in IIS Directory.
I have a layered web application that I built with ASP.NET MVC 4, WebAPI
I have a ASP.NET MVC 4 application with Web API. It's working great. But
I have a ASP.NET MVC4 web api that uses fluent NHibernate, but when I
I have created an application in ASP.NET MVC4 and hosted my application in IIS
I have an ASP.NET MVC4 website implementing a REST API, which I'm consuming from

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.