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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:03:35+00:00 2026-05-20T10:03:35+00:00

How can I, when executing a controller action, take a Uri (not the one

  • 0

How can I, when executing a controller action, take a Uri (not the one requested) and invoke the action from the controller that would have been executed had that Uri been the one that was called? I can’t simply redirect to that action as I need it to happen in the same request context.

  • 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-20T10:03:36+00:00Added an answer on May 20, 2026 at 10:03 am

    Assuming you have access to the HttpContext (and I suppose you do since you are asking) you could:

    var routeData = new RouteData();
    // controller and action are compulsory
    routeData.Values["action"] = "index";
    routeData.Values["controller"] = "foo";
    // some additional route parameter
    routeData.Values["foo"] = "bar";
    IController fooController = new FooController();
    var rc = new RequestContext(new HttpContextWrapper(HttpContext), routeData);
    fooController.Execute(rc);
    

    Personally I use this approach for handling errors inside my application. I put this in Application_Error and execute an error controller for custom error pages staying in the context of the initial HTTP request. You could also place complex objects inside the routeData hash and you will get those complex objects back as action parameters. I use this to pass the actual exception that occurred to the error controller action.


    UPDATE:

    In order to parse an URL to its route data tokens taking into account current routes you could:

    var request = new HttpRequest(null, "http://foo.com/Home/Index", "id=1");
    var response = new HttpResponse(new StringWriter());
    var httpContext = new HttpContext(request, response);
    var routeData = RouteTable.Routes.GetRouteData(new HttpContextWrapper(httpContext));
    var values = routeData.Values;
    var action = values["action"];
    var controller = values["controller"];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a controller that handles file uploads. Ultimately I would like to be
I have a .NET MVC controller action that returns a JsonResult to a YUI
I have parent view that also renders sub-controller action using RenderAction() (that returns a
I have a controller with multiple actions that take :year and :month as attributes
How can I render after executing an action in a restful controller instead of
How I can stop executing action/controller without redirection, and only return Response with statusCode
I have a pylons controller action that accepts POST @restrict('POST') def myaction(self): payload =
I have a Controller Action that is trying to return plain text to an
How can you get the number of affected rows from executing a MERGE INTO...
Is there a 'Max # of result sets that can be displayed' when executing

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.