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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T20:10:29+00:00 2026-06-06T20:10:29+00:00

How can i dynamically load a Partial View? I mean I have this view,

  • 0

How can i dynamically load a Partial View?

I mean I have this view, lets say ListProducts, there I select some dropdownlists with products, etc, and with the selected values from those I wanna fill a partial view, which would be in a div that was invisible but after onchange() event would become visible and with the data from the specific selected items.

  • 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-06T20:10:31+00:00Added an answer on June 6, 2026 at 8:10 pm

    Use jQuery’s $.load() with a controller action that returns a partial view.
    For example:

    HTML

    <script type="text/javascript">
    $(document).ready(function()
    {
        $("#yourselect").onchange(function()
        {
            // Home is your controller, Index is your action name
            $("#yourdiv").load("@Url.Action("Index","Home")", { 'id' : '123' }, 
                                            function (response, status, xhr)
            {
                if (status == "error")
                {
                    alert("An error occurred while loading the results.");
                }
            });
        });
    });
    </script>
    
    <div id="yourdiv">
    </div>
    

    Controller

    public virtual ActionResult Index(string id)
    {
        var myModel = GetSomeData();
        return Partial(myModel);
    }
    

    View

    @model IEnumerable<YourObjects>
    
    @if (Model == null || Model.Count() == 0)
    {
        <p>No results found</p>
    }
    else
    {
        <ul>
        @foreach (YourObjects myobject in Model)
        {
            <li>@myObject.Name</li>
        }
        </ul>
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can we dynamically load dependencies using maven. For example, lets say we have a
I have some flags I store in my mysql database so I can dynamically
How can I add an Edit column in this GridView dynamically? I have been
I have a module MyModule . I dynamically load classes into it. How can
How can I dynamically load a usercontrol in ASP.NET if I dont have access
How can you reliably and dynamically load a JavaScript file? This will can be
I have an iframe that I dynamically load HTML+JavaScript into. How can I load
I have a page where the user can dynamically add file upload boxes. Adding
I'm not sure this is possible, but in ruby, you can dynamically call a
Does anyone know how I can load a Ruby on Rails partial into a

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.