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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:56:28+00:00 2026-05-30T07:56:28+00:00

I would like to have one view called Example and have the ability to

  • 0

I would like to have one view called Example and have the ability to update and load different partial views into one html div tag. In the case below I would like the page to display a details partial if the URL parameter is an id or a grid of results if the URL parameter is search.

Optional URL parameters:
…./Example?id=1234
…./Example?search=ccc

User would pass in one of the above and either _details.cshtml or _grid.cshtml would update the details div below.

Div tag in Example.cshtml

<div id="Details"></div>

I’m just stuck on where this partial view filtering would take place, jquery or in the controller?

Any help would be appreciated.

  • 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-30T07:56:29+00:00Added an answer on May 30, 2026 at 7:56 am

    Your controller should pass a view model to the view. This view model could the partial to be loaded:

    public class MyViewModel
    {
        public string DetailsPartial { get; set; }
    }
    

    and then based on the presence of the id or search parameters the controller will populate this property:

    public ActionResult Index(int? id, string search)
    {
        var model = new MyViewModel
        {
            DetailsPartial = (id != null) ? "_details" : "_grid"
        }; 
        return View(model);
    }
    

    and in the corresponding view:

    @model MyViewModel
    ...
    <div id="Details">
        @Html.Partial(Model.DetailsPartial)
    </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two views that I would like to combine into one. The first
I would like to have a mapping which maps two string into one string.
I have two LINQ statements that I would like to make into one, but
I would like to have one column in QTableWidget NOT editable. In forums I
I would like to have more than one button. I tried to copy code
I have one query on which I would like to get your valuable feedback.
I have one file in my project, (the readme file,) which I would like
Greetings, I would like to ask if creating Singleton to have only one active
I have a simple one-to-many relationship. I would like to select rows from the
I have an UITableViewController which I would like to add UIToolbar to with one

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.