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 6113051
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:48:53+00:00 2026-05-23T14:48:53+00:00

How to redirect program flow to a controller action. I would like to simulate

  • 0

How to redirect program flow to a controller action. I would like to simulate MVC’s RedirectToAction(“ActionName”, “ControllerName”, route values) call inside Global.asax.cs. How can I do it?

  • 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-05-23T14:48:53+00:00Added an answer on May 23, 2026 at 2:48 pm

    If you’re using MVC 3, I’d recommend writing your own actionfilter, which you can then apply globally.

    A small code example:

    public class HandleSessionTimeoutAttribute : ActionFilterAttribute
    {
        public override void OnActionExecuting(FilterExecutingContext filterContext)
        {
            // Do whatever it is you want to do here.
            // The controller and request contexts, along with a whole lot of other
            // stuff, is available on the filter context.
        }
    }
    

    And then in your Global.asax.cs:

    protected void Application_Start()
    {
        AreaRegistration.RegisterAllAreas();
    
        // Register global filter
        GlobalFilters.Filters.Add(new HandleSessionTimeoutAttribute());
    
        RegisterGlobalFilters(GlobalFilters.Filters);
        RegisterRoutes(RouteTable.Routes);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to execute some program through ssh and redirect its input from
Within my C program, I’d like to temporarly redirect stdout to /dev/null (for example).
i need to redirect all of the stdout of a program except the first
I want to redirect the output of some Windows program directly to gvim basically
I compiled a Java program as javac t1.java > a in order to redirect
I know that there're stdout/in/err for a program and I want to redirect a
I have a confirm box and redirect to an action but it is not
Trying to understand, how to redirect program output to a file... Code : import
How do I redirect the input and output of a console C# program to
I have a rough program sketched thusly: if (condition){ //redirect to some page }

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.