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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T18:48:03+00:00 2026-05-11T18:48:03+00:00

I have an ASP.NET 2.0 Web application.I want to show a progress indcator when

  • 0

I have an ASP.NET 2.0 Web application.I want to show a progress indcator when user saves some data (Ex : Editing profile).I have already used jQuery in my application for some client side effects. How can i do this ? any jquery trusted stuff to use along with ASP.NET ? Thanks in advance

  • 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-11T18:48:03+00:00Added an answer on May 11, 2026 at 6:48 pm

    Do you want to show actual progress or just a busy indicator while the action is happening? If the former, you’ll need to have some mechanism to record the save progress in the session and a method to check the state of the progress via AJAX. You’d submit the form via AJAX then periodically call the check method to get reports of the progress and update whatever client-side indicator (usually switch from one to another of a series of canned images or increase the width of some filled “bar”). This, of course, is complicated.

    If you want to do the latter, just display an animated GIF that’s a busy indicator while you submit the form via AJAX from jQuery using the beforeSend callback, then hide the indicator using the ajax method’s complete handler.

    $('form').ajax( {
        url: '/updateprofile.aspx',
        type: 'POST',
        data: function() { return $('form').serialize(); },
        beforeSend: function() { $('#indicator').show(); },
        complete: function() { $('#indicator').hide(); },
        success: function(data,status) { alert('Update complete'); }
    });
    

    The above code would be in the function invoked from whatever handler invokes the submission or hooked to the form’s submit event — though you’d have to prevent the default action from taking place, too.

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

Sidebar

Related Questions

I have an ASP.NET web application and I want to be able to take
I have a Asp.net MVC web application, containing mostly text. I want to put
I have a web application using ASP.NET 2.0 and I want to know if
My situation is this: I have an ASP.NET web application that I want to
I have an asp.net web application in c# script. I want this application page
I have an ASP.NET MVC 3 / .NET Web Application, which is heavily data-driven,
This is a Asp.net 3.5 Web Application I have a variety of data collections,
I have an asp.net web application backed by SQL Server 2005, and I want
I have an ASP.NET MVC 3 C#.NET web application and I want the Enter
I have an asp.net web application. The application reads data from an xml. 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.