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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 19, 20262026-06-19T04:34:45+00:00 2026-06-19T04:34:45+00:00

I want to use ajax for add data in database and i found following

  • 0

I want to use ajax for add data in database and i found following code in net and it is working fine.

<script language='javascript'>
reqObj=null;
function saveCust(){
    document.getElementById('res').innerHTML='processing';
    if(window.XMLHttpRequest){
        reqObj=new XMLHttpRequest();
    }else {
        reqObj=new ActiveXObject('Microsoft.XMLHTTP');
    }
    reqObj.onreadystatechange=processSave;
    reqObj.open('POST','./custSave?reqObj.open('POST','./cName?id='+document.getElementById('CustCode').value,true);,true);
    reqObj.send(null);
}
function processSave(){
    if(reqObj.readyState==4){
        document.getElementById('res').innerHTML=reqObj.responseText;
    }
}
</script>

Above code sends only one String but, i have 5 Strings in my form.

Please anybody alter the code for sending multiple data.

  • 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-19T04:34:47+00:00Added an answer on June 19, 2026 at 4:34 am

    The problem is that you’re sending a single parameter in the reqObj.open function:

    reqObj.open('POST','./custSave?reqObj.open('POST','./cName?id='+document.getElementById('CustCode').value,true);,true);
    

    Note that the only parameter you send is id.

    You can add more parameters in the flavor of QueryString:

    id=something&otherParameter=else //and more parameters
    

    IMO the easiest way to handle an ajax request would be using jQuery, as shown and heavily explained by BalusC in How to use Servlets and Ajax?.

    Based on the samples there and jQuery Ajax POST example with PHP, you can come with the following code:

    • Assuming the 5 Strings are in the form

      function saveCust(){
          $('#res').html('processing');
          var $form = $(this);
          var serializedData = $form.serialize();
          $.post('./custSave', serializedData, function(responseText) {
              $('#res').html(responseText);
          });
      }
      
    • Assuming there’s data outside the form

      function saveCust(){
          $('#res').html('processing');
          var $form = $(this);
          var serializedData = $form.serialize() + "&id=" + $('#CustCode').val();
          $.post('./custSave', serializedData, function(responseText) {
              $('#res').html(responseText);
          });
      }
      

    And you can even enhance this using more jQuery functions, but that’s outside the scope of this answer.

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

Sidebar

Related Questions

I am working on an ASP.NET web application. I want to use Jquery ajax
I have an asp.net user control on which I want to use jquery ajax.
If I want to use ASP.Net without the Microsoft AJAX Control Toolkit or JQuery
I m building a blog in asp.net. I want to use jquery to add
I have an ASP.Net MVC page where I want to use AJAX to update
I want to use Goolge AJAX Feed API in my C# console application to
I want to use the ajax dll 3.5 in the website of framework 2.0
I want to start an application which will use ajax push, however the web
I want to have a set of checkboxes that use AJAX to post to
I want to settle on a GUI framework, and use AJAX, as simply as

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.