Tagged Questions
4
votes
2answers
1k views
Using updateprogress while generating a file with Response.write in ASP.NET
I am creating an Excel file with Response.write in my C# file and it takes 1-2 mins to create the file. I would like to make use of UpdateProgress to indicate that the file generation is in progress. ...
2
votes
2answers
1k views
UpdateProgress Control Remains Visible on Safari and Chrome
I am using the ASP.NET Ajax controls UpdatePanel and UpdateProgress. The idea of a the UpdateProgress control is to display a message while the page is performing a partial postback, then disappear ...
1
vote
1answer
129 views
show update progress till the dataset is fill
I'm using progress bar as below mentioned;
<ajaxToolkit:ModalPopupExtender ID="mpeWait" runat="server" Drag="false" PopupControlID="pnlWaitDialog"
TargetControlID="btnDummy" ...
0
votes
1answer
66 views
ajax progress bar not working?
I am trying to present a ajax progress bar when a delete button is clicked. This delete button will do things and will take time to process.. The delete button is within a repeater. The code is below:
...
0
votes
1answer
87 views
How to run Ajax loading image for Crystal Report
I have a Crystal Report in UpdatePanel. I want to use a ajax loading image when the crystalreportviewer loading data, but my code don't display the image.
<asp:UpdatePanel ID="uppnlAll" ...
0
votes
2answers
313 views
I have caused a postback loop using javascript onload to fire an updateprogress image
I have an asp.net page that needs to populate a treeview based on a directory structure. Rather than have the user stare at a blank page while creating the nodes I am trying to use UpdateProgress for ...
0
votes
2answers
371 views
UpdateProgress Covers Update Panel
Is there any way to get an updateprogress to entirely cover an updatepanel ?
(Asp.net .net 4)
0
votes
1answer
411 views
C# UpdateProgress which displays a variable from the running code?
I have an updateprogress in my aspx file, which has a "label control" in it with a text "Loading...", while I run my code, there is a "for loop" in my code. While this loop continues, I want to show ...
0
votes
1answer
3k views
Updateprogessbar is not working when Setting AssociatedUpdatePanelID?
I have two updatepanel and a progressbar on the page. If I set the AssociatedUpdatePanelID, then progressbar is not working, without setting AssociatedUpdatePanelID progress bar is working but the ...