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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T20:16:19+00:00 2026-06-12T20:16:19+00:00

After making ajax call using Jquery to the vb.net server side code, I need

  • 0

After making ajax call using Jquery to the vb.net server side code, I need to make whole page to reload on the success of AJAX call.

This is my client side AJAX call..

$(“#ButtonSave”).click(function () {

//convert gridview to JSON
var jsonData = new Array();
$.map($("table[id*=Gridview1] tr"), function (item, index) {
    if ($(item).find("input[type=text]").length > 0) {
        jsonData[index] = new Object();
        jsonData[index].charge = $(item).find("input[type=text][id*=txtCharge]").val();
        jsonData[index].produce = $(item).find("input[type=text][id*=txtProduce]").val();         
        jsonData[index].weight = $(item).find("input[type=text][id*=txtWeight]").val();
        jsonData[index].feet = $(item).find("input[type=text][id*=txtFeet]").val();
        jsonData[index].orderNumber = $(item).find("input[type=text][id*=txtOrderNumber]").val(); 
        jsonData[index].comments = $(item).find("input[type=text][id*=txtComments]").val();
    }
});

var jsonStringData = JSON.stringify(jsonData);

var jqxhr = $.ajax({
    url: "Correction.aspx",
    type: "POST",
    timeout: 10000,
    data: "jsonData=" + jsonStringData
})
.error(function () {
    alert('Error');
})
.success(function (data) {
    alert('Success');
});

});

  • 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-12T20:16:20+00:00Added an answer on June 12, 2026 at 8:16 pm

    You are using wrong ajax call You cannot assign it into variable and you are sending data incorrectly

    var jqxhr = $.ajax({
        url: "Correction.aspx",
        type: "POST",
        timeout: 10000,
        data: "jsonData=" + jsonStringData
    })
    .error(function () {
        alert('Error');
    })
    .success(function (data) {
        alert('Success');
    });
    

    use this

     $.ajax({
        url: "Correction.aspx",
        type: "POST",
        timeout: 10000,
        data: {jsonData: jsonStringData}
    })
    .error:(function () {
        alert('Error');
    })
    .success:(function (data) {
       window.location.reload(true);
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using jQuery Validate for my form validation. I'm making an Ajax call to
My encoding is set to ISO-8859-1. I'm making an AJAX call using jQuery.ajax to
I'm searching for a better solution to making an AJAX call with jQuery, having
I am making cross-domain Ajax calls using the latest version of jQuery 1.7.1. with
I am making an ajax call in jquery $.get(validate_isbn.php, {isbn: obj[16]}, function(answer) { console.log(answer);
I am making an AJAX call (with jQuery) to retrieve a PartialView . Along
I am working with JQuery and making a ajax call to delete some stuff
I have this button making an ajax call using a click event. My goal
Is it possible to interact with an XML file after making a $.ajax() call?
After making cabal install of the darcsden code I get this message: cabal: The

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.