Tagged Questions

0
votes
2answers
64 views

Auto Submit UpdatePanel and show UpdateProgress area.

I want to auto submit my form and show the update progress area once it is submitted. I have tired adding 2 fucntions to the page: window.onload=function(){ __doPostBack('UpdatePanelId',''); } …
0
votes
2answers
37 views

Updateprogess image is not ending or disappearing or vanishing or hiding after Response.Redirect is called.

I have an updateprogress bar, displaying a text "loading". After I hit a imagebutton (I am using it for downloading a file) inside my update panel, with a click event, It calls click function , and …
1
vote
3answers
158 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
251 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 …
0
votes
1answer
86 views

Does ASP.NET MVC provide any way to implement UpdateProgress WebForms control analog?

Does ASP.NET MVC provide any way to implement UpdateProgress WebForms control analog? Can anyone explain me how to achieve such client-side functionality with MVC?
3
votes
3answers
309 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. …
0
votes
3answers
833 views

ASP.NET 3.5: Display UpdateProgress during Page_Load()

I am building an ASP.NET site using Visual Studio 2008 and have a page looking like this (stuff snipped) <asp:Content ID="Content2" ContentPlaceHolderID="PageContentPlaceHolder" runat="server"> …