How can I go about implementing a progress bar ?
When my application runs a query, the whole application will just freeze till the whole query result is return.
How can I go about implementing a progress bar showing that a query is running ?
Previously I tried implementing it and the progress bar freezes as well while the query is executing.
Loading
Blocked AccountPosted Oct 21, 2008, 2:12 AM
Hi,
U can do this with the help of ajax by using asp.net updateprogess control
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="50">
<ProgressTemplate>
<asp:Image ID="ImageLoading" runat="server" ImageUrl="~/Images/Loading.GIF" />
ProgressTemplate>
asp:UpdateProgress>
<ajaxToolkit:AlwaysVisibleControlExtender ID="AlwaysVisibleLoading" runat="server" TargetControlID="UpdateProgress1" VerticalSide="Top" VerticalOffset="0" HorizontalSide="Right" HorizontalOffset="60" ScrollEffectDuration=".1" />