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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T13:58:29+00:00 2026-05-19T13:58:29+00:00

I am in the middle of developing a project, which uses ASP.NET/C#. I am

  • 0

I am in the middle of developing a project, which uses ASP.NET/C#. I am using AJAX a lot in the pages, to provide a smooth experience for entering and updating data. One little visual issue is that due to pages not being posted back when data is changed, the user sees nothing at all happen. Is there a simple way in ASP.NET AJAX to provide some form of feedback to the user, to show that the data has been saved? i.e. a box that appears for a second or two, then fades out.

Or perhaps a general question to how you guys handle letting the user know their changes have been saved?

  • 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-19T13:58:30+00:00Added an answer on May 19, 2026 at 1:58 pm

    It is important to provide your users with feedback when waiting for AJAX requests to complete from a usability point of view and also because it stops them from doing things like clicking a submit button again because they think nothing is happening.

    How you do depends on your implementation but normally you can do things like display an animated gif at the beginning of your ajax call (which you can generate at http://ajaxload.info/) and then hide it again in the onSuccess() method. If using jQuery something like

    <div id="progress" style="display: none;"><img src="ajax-loading.gif"/></div>
    
    $('#button').click(function(){
        $('#progress').show();
        // ajax call
    });
    
    function onSuccess() {
        $('#progress').hide();
    }
    

    This equally applies when using something like an AJAX enabled WCF service. You can also use the following when working with UpdatePanels

    <asp:UpdatePanelAnimationExtender ID="uppEx"
        runat="server"
        BehaviorID="animation" 
        TargetControlID="upResults">
        <Animations>
            <OnUpdating>
                <Parallel duration="0">
                    <ScriptAction Script="onUpdating();" />
                    <EnableAction AnimationTarget="btnSearch" Enabled="false" />
                    <FadeOut minimumOpacity=".2" />
                </Parallel>
            </OnUpdating>
            <OnUpdated>
                <Parallel duration="0">
                    <ScriptAction Script="onUpdated();" />
                    <EnableAction AnimationTarget="btnSearch" Enabled="true" />
                    <FadeIn minimumOpacity=".2" />
                </Parallel>
            </OnUpdated>
        </Animations>
    </asp:UpdatePanelAnimationExtender>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm developing a web template using asp.net and c#, which contains 3 parts. I
My team and I are in the middle of developing an application which needs
I am in the middle of developing a PHP social media web application which
I'm in the middle of developing an e-commerce site that is using Paypal as
I'm in the middle of developing android app using google map. My question is
I am in the middle of developing an enterprise application using RoR (first time
I'm working on a project where I'm developing a pseudo Unified Communications middle tier
I am in the middle of developing a Django application, which has quite complicated
I am in the middle of developing my first GWT application which will consume
I'm developing a middle sized project, where performans is really important. I could not

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.