4
Answers

How to see progress of processing using jquery

Hello all,
 
Hope this question meet you in good health.
 
What i want to achieve is using Jquery to show the progress level of application processing either Updating or INSERTING of records.
 
I have tried:
  1. $('#progressbar').hide();  
  2. $("#<%=Button1.ClientID%>").click(function () {  
  3.   
  4.               $('#progressbar').show();  
  5.               $('#progressbar').progressbar({  
  6.                   value: false  
  7.               });  
  8.                
  9.                
  10.           });  
This shows a progress bar, want the progress bar to show the percentage of processing e.g  
 
I am developing the application in ASP.NET C# 
 
Thank you in advance 
Answers (4)