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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T12:18:59+00:00 2026-05-22T12:18:59+00:00

how can i render multiple different actions in one call to a speccific controller?

  • 0

how can i render multiple different actions in one call to a speccific controller?
Html.RenderAction() / Html.Action() only handles one controller&action.
But what if i want in one call to render different views on the screen?

thanks in advance,
Sagiv

EDIT:
Hi again.
I’m not sure you understood my question.
this is the cshtml:

   <div id="menu">@using (Ajax.ActionLink("click me", "SomeAction","SomeController", new AjaxOptions() { HttpMethod = "POST", OnSuccess = "showMsg", OnFailure = "showError" }))</div>
    <div id="div1">bla bla content</div>
....
    <div id="div2">bla bla content</div>

and this is the controller:

 public class SomeController : Controller
    {
        public ActionResult SomeAction()
        {         
            return View("somethingfordiv1", ModelForDiv1);
            return View("somethingfordiv2", ModelForDiv2); //i want also return another view here
        }
     }

in this ajax call on the controller, i want to return 2 different views for 2 different divs.
thanks again 🙂

  • 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-22T12:18:59+00:00Added an answer on May 22, 2026 at 12:18 pm

    Here’s one way you could proceed. You could aggregate the two view models into a unique view model and then have the controller action return a view containing javascript which will inject the two view results into the different divs.

    As always start with the view models:

    public class Model1 { }
    public class Model2 { }
    
    public class AggregatedModel
    {
        public Model1 Model1 { get; set; }
        public Model2 Model2 { get; set; }
    }
    

    Then a controller:

    public class HomeController : Controller
    {
        public ActionResult Index()
        {
            return View();
        }
    
        public ActionResult SomeAction()
        {
            var model = new AggregatedModel
            {
                Model1 = new Model1(),
                Model2 = new Model2()
            };
            Response.ContentType = "text/javascript";
            return PartialView(model);
        }
    }
    

    Then the corresponding ~/Views/Home/Index.cshtml view:

    <div id="menu">
        @Html.ActionLink("click me", "SomeAction", "Home", new { id = "clickme" })
    </div>
    
    <div id="div1">bla bla content</div>
    <div id="div2">bla bla content</div>
    
    <script type="text/javascript">
        $('#clickme').click(function () {
            $.getScript(this.href);
            return false;
        });
    </script>
    

    Next the ~/Views/Home/SomeAction.cshtml view:

    @model AggregatedModel
    $('#div1').html(@Html.Raw(Json.Encode(Html.Partial("Model1", Model.Model1).ToHtmlString())));
    $('#div2').html(@Html.Raw(Json.Encode(Html.Partial("Model2", Model.Model2).ToHtmlString())));
    

    and finally the two ~/Views/Home/Model1.cshtml and ~/Views/Home/Model2.cshtml views:

    @model Model1
    <span>This is the contents for model1</span>
    

    and:

    @model Model2
    <span>This is the contents for model2</span>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can I render after executing an action in a restful controller instead of
I know that within a view I can render an action from the same
How can I have a view render a partial (user control) from a different
Can anyone recommend a dropdownlist control for asp.net (3.5) that can render option groups?
I've been searching for a library that can render organisation charts in either flash
I'm trying to write a C++ windows service that can render to a texture.
I have an HBITMAP containing alpha channel data. I can successfully render this using
How can I write an ASP.NET (C#) application that will render a page can
When I render a page using the Django template renderer, I can pass in
This general topic has been asked here multiple times: how to render UITableViewCells with

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.