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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:56:05+00:00 2026-05-12T13:56:05+00:00

Seeing as though our team maintain an Intranet which has clients users guaranteed to

  • 0

Seeing as though our team maintain an Intranet which has clients users guaranteed to have javascript enabled we know that we can step in and start using jQuery more “thoroughly”. Our system is very large, so even though we use areas in our ASP.NET MVC application the sheer amount of pages to add, edit, delete and view sets of data per sub-system of an area is really quite large. A sub-system of an area can have roughly twenty tables of data. If there’s twenty tables of data, and you have individual pages to add, edit, delete and view them that means there’s a total of 60 pages. Now imagine there’s twenty sub-systems per area, then a single area would have 20 * 60 pages, and we have roughly 15 areas on our Intranet. You get the point, it’s huge.

Moving on to my real point, I’m wanting to cut this down by using jQuery capabilities of having a table of data on a page, hitting “delete” and it giving me a delete dialog with a confirm button which will then submit the form, redirect to the correct action and do the work for me. Now I need some guidance in the following areas:

  1. If I wanted to delete without posting back at all using ASP.NET MVC, what’s the process for doing this? This includes hitting delete, it going off and checking it’s able to delete (FK relationships must be dealt with in the correct manner), then if able deleting it and removing the row from the table in the view, all without refreshing the page.
  2. How do I call the delete action from an asynchronous process using jQuery? Is it wise to do so? Usually we use Html.ActionLink. Would I have to wrap it in a form?
  3. The same goes for editing and updating, again, what’s the best way to do this?

I’m looking for an elegant solution, and something which isn’t difficult to apply for every page I have to do this for. Any input would be much 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-12T13:56:06+00:00Added an answer on May 12, 2026 at 1:56 pm

    I’m working on a project that uses links to to fire off delete actions via AJAX POST (no postback).

    $("a.deleteLink").click(function(event)
    {
        event.preventDefault();
        if (confirm("Are you sure you want to delete this section?"))
        {
            //TODO Display processing indicator
    
            var myId = /* id of element */ ;
    
            $.post("/Section/Delete", { id: myId }, function(data)
            {
                if (data == "Success")
                {
                    //handle success
                    //TODO Fade out element using .fadeOut()
                }
                else
                {
                    //handle error
                }
            });
        }
    });
    

    The controller method is simply in /Controllers/SectionController.cs. Only accepts POST as should any action that changes the database.

        private SectionRepository secRepo = new SectionRepository();
    
        [AcceptVerbs(HttpVerbs.Post)]
        public ActionResult Delete(long id)
        {
            Section sec = secRepo.GetById(id);
    
            secRepo.Delete(sec);
            secRepo.Save();
    
            return Content("Success");
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Seeing as Java doesn't have nullable types, nor does it have a TryParse(), how
I'm interested in seeing a good diff algorithm, possibly in Javascript, for rendering a
I'm seeing strange errors when my C++ code has min() or max() calls. I'm
Seeing this: http://www.suckless.org/wiki.html . A wiki based on Mercurial. Are there any other non-code
After seeing the cool new reputation tab on the stackoverflow user page, I was
After seeing a previous post Making Applications programmed in .NET languages work on older
This should be fine seeing as the CLR hasn't actually changed? The boxes running
We're seeing a crash when instantiating an instance of the System.Xml.Serialization.XmlSerializer class in a
I'm seeing some errors that would indicate a connection leak. That is, connections that
I am interested in seeing if I can improve the way we use NUnit

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.