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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T01:01:05+00:00 2026-05-24T01:01:05+00:00

I’m working on my first ASP.NET MVC 3 application and I’ve got two Controllers

  • 0

I’m working on my first ASP.NET MVC 3 application and I’ve got two Controllers with Views, IceCreamController/IceCreamView and RecipeController/RecipeView, and on each the user can make a selection and display the recipe.

Selection causes a PartialView to be displayed which an Edit link on it. When clicked the EditView for this recipe is displayed, allowing the user to edit the attributes of the recipe item selected.

Great. This works fine except currently the POST action in the RecipeController looks like so:

[HttpPost]
public ActionResult Edit(RecipeViewModel viewModel)
{
   // updates the underlying model with the viewModel
   // other things not germane to the discussion

   return View();
}

and that ends up always showing the Index view for Recipe, which isn’t what I want. Rather, I’d like to be able to do is send the user back to the appropriate View (IceCreamView or RecipeView) when they’ve submitted their changes.

I assume that others have done something similar to this. How do you communicate which Controller/Action should be redirected to when the Edit is done?


Note:
I added a bit above to clarify that I’ve got two separate Controllers (IceCreamController and RecipeController) and each has a View that can select and ultimately do a

@Html.Partial("_Recipe", model.recipe)

to display the details of a particular recipe. My problem is how to get the page redirected back to either IceCreamView or RecipeView by the Edit Action on RecipeController – essentially, how do I communicate where it should go since the recipe details could have been displayed by either path.


Solution Employed:

As you can read below in the comments to Darrin’s answer, since I’ve got more than a single controller involved, a solution is to utilize the viewmodel to pass in the controller/action that should be redirected to following when the Edit post action is completed.

As I’ve got more than a single instance of this situation (arriving at an Edit page via multiple paths), I think creating a simple BaseViewModel to hold this functionality might be in order and then have all the applicable viewmodels inherit from that BaseViewModel.

I’m don’t think it needs to be anything more than something like:

public BaseViewModel
{
   public BaseViewModel(string controller, string action)
   {
      ControllerName = controller ?? string.empty;
      ActionName = action ?? string.empty;
   }

   public string ControllerName { get; set; }
   public string Action { get; set; }
}

And then a viewmodel’s constructor could just be modified to pass in the controller/action and hand that off to the base class.

There may be other solutions to this and if so, I’d like to hear them.

  • 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-24T01:01:06+00:00Added an answer on May 24, 2026 at 1:01 am
    [HttpPost]
    public ActionResult Edit(RecipeViewModel viewModel)
    {
        // updates the underlying model with the viewModel
        // other things not germane to the discussion
    
        return View("IceCreamView");
    }
    

    or if you wanted to redirect you could have a controller action that would serve this view and then return RedirectToAction("IceCream"); which is probably more correct rather than directly returning a view from a POST action in case of success.

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

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I'm making a simple page using Google Maps API 3. My first. One marker
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build
I want use html5's new tag to play a wav file (currently only supported
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
That's pretty much it. I'm using Nokogiri to scrape a web page what has

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.