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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T07:51:51+00:00 2026-05-13T07:51:51+00:00

I have a div with a partial inside somewhere on the page. I have

  • 0

I have a div with a partial inside somewhere on the page. I have a event on a button. How could I write a Javascript that takes the div and reloads it and also reloads the partial view.

I have this in another view. But I can’t do it like this now. But I need the same thing to happen only execute by a jQuery not directly in the page. Can i run maybe simular ajax code in the jQuery script because its javascript too isn’t it?.

<%  using (Ajax.BeginForm("EditFeiertag", new AjaxOptions { InsertionMode = InsertionMode.Replace, UpdateTargetId = "feiertage" }))
    {  %>
<div id="feiertage">
    <% Html.RenderPartial("FeiertagTable"); %>
</div>
<%  } %>

I would help me if I could run the script above by start a click event or something like that

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

    Lets start with some basic controller actions:

    public class FeiertagController
    {
        IFeiertagService feiertagService = new FeiertagService();
    
        public ActionResult EditFeiertag()
        {
            // ... return your main edit view
            return View();
        }
    
        // Will be called by your jquery ajax call
        public PartialResult GetFeiertagTable()
        {
            var feiertagData = messageService.getLatestFeiertagData();
            var viewModel = new FeiertagViewModel();
            feiertagViewModel.feirtagTableData = feiertagData;
    
            return PartialView("FeiertagTableView", viewModel);
        }
    
    }
    

    So, EditFeiertag() is used to render your whole edit page, and that page will make a call to GetFeiertagTable() when it wants to asynchronously render your partial view.

    Now, on your view, lets say you have something like:

    <div id="Container">
        <div id="LeftPanel">
            // ... Some menu items
        </div>
        <div id="RightPanel">
            <a id="ReloadLink" href="#">Reload Table</a>
            <div id="FeiertagTable>
                <% Html.RenderPartial("FeiertagTable", Model.feiertagTableData); %>
            </div>
        </div>
    </div>
    

    This works fine and will load your table once. But you want to make the Feiertag table reload if you click a certain element (in our case the #ReloadLink).

    Add the following to portion of your page:

    <head>
            <script src="../../Scripts/Jquery/jquery-1.3.2.min.js" type="text/javascript"></script>
            <script type="text/javascript">
                jQuery(document).ready(function($) {
                    $('#ReloadLink').click(function(e)
                    {
                        e.preventDefault();  // stop the links default behavior
                        $('#FeiertagTable').load('/Feiertag/GetFeiertagTable');
                    });
                });
            </script>
    </head>
    

    That will then add an event on the click event for your reload link that will call a jquery load() method. This method is a simplified ajax get request and it will replace the contents of the selected div (FeiertagTable), with what is returned.

    Our GetFeiertagTable() controller action will return the partial view, which is then inserted into that div.

    I hope this gets you pointed in the right direction!

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

Sidebar

Ask A Question

Stats

  • Questions 339k
  • Answers 339k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Use a null coalescing operator? If the value on the… May 14, 2026 at 4:26 am
  • Editorial Team
    Editorial Team added an answer The top level site collection SPSite is a container in… May 14, 2026 at 4:26 am
  • Editorial Team
    Editorial Team added an answer A python dictionary has no ordering -- if in practice… May 14, 2026 at 4:26 am

Related Questions

I have a menu (jquery-ui accordion with Html.ActionLink as menu options). How can I
I want to build a webapplication with a Single Page Interface, using ASP.NET MVC.
I would like to have filtering page that performs ajax requests to asynchronously update
How do I structure my pages and partial templates so that Ajax will play
I have this in HomeController : public ActionResult Details(string id) { var customer =

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.