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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T14:41:25+00:00 2026-05-20T14:41:25+00:00

My application is in Classic ASP. Currently SAVE functionality is taking around 30sec to

  • 0

My application is in Classic ASP. Currently SAVE functionality is taking around 30sec to complete and the process is:

  1. Reads the data from UI.
  2. Send to the Database.
  3. Retrieve saved data again from database to populate UI.
    I need some other way to improve the performance by less then 10sec.
    e.g:
  4. Using XML and web services, but I do not want to save the xml file temporarily in the system.
  5. Using JQuery and Ajax .
    Please suggest me which one is feasible and will take less effort to code also less maintainable.
    Please provide me any code or reference if anyone have. As I do not have any experience in XML or JQuery or Ajax.
  • 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-20T14:41:25+00:00Added an answer on May 20, 2026 at 2:41 pm

    If you wanted more detail answer, please describe how you do your process now.

    There are several reasons why your the process take too long, for example:

    1. Connection between your database and we application server.
    2. How your code written for retrieving or updating the database.
    3. What provider do you use for database connection.
    4. Are there a lot of stuff to update, what kind of data.

    and many more.

    For jQuery ajax sample (This is Ajax call with jQuery function):

    <script type="text/javascript">
        //this is for handling the button click event
        $(function () {
            $("#btnTest").click(function () {
                //this is to call the function if click was initiated
                AjaxTest();
            });
        };
    
        function AjaxTest() {
            //this is variable to collect data
            var _ajaxData= { firstName: "John", lastName: "Smith", email: "john.smith@whatnot.com" };
    
            //this is the main ajax function, it basically send the collected data
            //to AjaxProcessPage.aspx and response back
            $.post("AjaxProcessPage.aspx", _ajaxData, function (data) {
                if (data.status == "ok") {
                    alert("Data is ok");
                };
            });
        }
    </script>
    
    <body>
    <input type="button" name="btnTest" id="btnTest" />
    </body>
    

    Explanation are in the comment, this is basically the client-side. When data are sent to AjaxProcessPage.aspx, you can insert your process on that page.

    For more information about jQuery Ajax:
    http://api.jquery.com/category/ajax/

    For more information about $.post() function of jQuery that I used:
    http://api.jquery.com/jQuery.post/

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

Sidebar

Related Questions

I'm currently trying to secure my classic ASP application from XSS. I came across
I have a classic ASP application currently secured using ASP.NET Forms Authentication running on
I have a classic ASP application that I've been constantly trying to modularize. Currently,
We have a classic ASP application that simply works and we have been loathe
We've got a classic ASP application that is putting out some very large reports,
In a previous job we had a classic ASP application that no one wanted
I'm making some changes to a legacy classic ASP application. I've made the changes
I'm creating a GUID for use in a Classic ASP application, by using TypeLib.
In classic ASP there is a global object called Application that is accessed simultaniously
We have an legacy application (mixture of classic ASP and ASP.net) that has a

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.