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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T08:57:13+00:00 2026-05-13T08:57:13+00:00

I have an ASP.NET gridview I want to manipulate using JavaScript/JQuery. The problem I

  • 0

I have an ASP.NET gridview I want to manipulate using JavaScript/JQuery. The problem I THINK I’m going to have with my approach is that the server won’t have any knowledge of the rows that I am appending via gridview since the html representation of the gridview control is coupled with the object model that lives on the server. So here is what I need to do:

I need to append to the gridview when a user submits data, and submit each row in the batch of entered data to the server to be processed. Because I have other ASP.NET controls that will contain data that I want to submit, I’d like to submit all that data via a traditional postback to the server.

  1. How do I implement this approach if possible?
  2. If not possible, could you please explain?

Thank you very much for your help.

  • 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-13T08:57:13+00:00Added an answer on May 13, 2026 at 8:57 am
    var queryString = "";
    
    // This could be based on a number of different events
    $('#finishButton').click(function(){
    
        // Iterate through each input (you could add other form elements)
        $('#myForm input').each(function(){
    
            // Build your query string to post to your aspx page
            queryString += $(this).attr("name") + "&" + $(this).val() + ",";
    
        });
    });
    
    // Make sure special chars are escaped
    queryString = escape(queryString);
    
    // POST the form to your aspx page
    $.ajax({ 
        type: 'POST', 
        url: 'myFormProcessor.aspx', 
        data: queryString,
        // Upon a successful POST, successHandler will be called 
        success: successHandler 
    });
    
    // Add the new data to the grid
    function successHandler(){
    
        // Clone the last row
        $('#myTable tr:last').clone(true).insertAfter('#myTable tr:last');
    
        // Here you could just break apart the query 
        // string you build in the above code
        // and use those values to change the values 
        // in the row you added to the grid
    
    }
    

    Make sure to unescape the query string in your aspx page, and then break it up by the delimiters you’re using. I used ‘&’ to separate key/value and commas between variables (inputs).

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

Sidebar

Ask A Question

Stats

  • Questions 424k
  • Answers 424k
  • 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 I'm not familiar with the ASP.NET scenario, but if I… May 15, 2026 at 12:03 pm
  • Editorial Team
    Editorial Team added an answer In the C++ version you have to tell cv::VideoWriter that… May 15, 2026 at 12:03 pm
  • Editorial Team
    Editorial Team added an answer Look at the mogrify method for cursors -- it will… May 15, 2026 at 12:03 pm

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.