Tagged Questions

2
votes
1answer
550 views

Update progress position?

My update progress displays under the update panel. Is there a way to display it near the control which caused the async postback? I have a very long form so users might not scroll all the way down ...
1
vote
1answer
296 views

ASP.Net Ajax - UpdateProgress Sleep

Getting to grips with ASP.Net Ajax I've got a simple UpdatePanel with an associated UpdateProgress which I'm using to tell a user their shopping cart has been added to. Is it OK to use ...
1
vote
1answer
470 views

Child UpdatePanel and parent UpdateProgress problem

I have a nested child and parent UpdatePanel. The problem is, when the child UpdatePanel is refreshed/posted, the UpdateProgress in parent fires up. How can I prevent this? The structure is like this: ...
1
vote
3answers
2k views

ASP.NET Ajax Show UpdateProgress control for minimum amount of time

Sometimes my ajax request is so fast that the user does not realize a ajax call was made. So I would like to force the UpdateProgress control to display for a minimum about of time, even if the ajax ...
0
votes
1answer
169 views

using jquery for modal asp.net ajax udate progress

I have asp.net UpdatePanel and UpdateProgress controls on my form . I'm trying to make Update progress modal by jQuery BlockUI Plugin or jquery itself . the ...
0
votes
1answer
41 views

Avoid Page hangup after Registerstartup script firing

I have an asp.net 3.5 application which contains gridview, having checkbox as one of the column. If user doesn't select any checkboxes and clicks submit button, alert is firing prompting user to ...
0
votes
1answer
419 views

Update Progress animated gif stops on postback

I have used ajax update progress control that shows the animated gif when postback happens. Problem: It displays for a while but then it stops refershing (or rather, stops playing/revoloving). What ...
0
votes
4answers
868 views

UpdateProgress with an UpdatePanel

I want to show the UpdateProgress on page A when a user clicks on the "Next" button to go to next page. The next page is Page B, which has heavy data loading. When the button is clicked, it doesn't ...