Public Partial Class TestGifInProgress
Inherits System.Web.UI.Page
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles Button1.Click ', Timer1.Tick
System.Threading.Thread.Sleep(3000)
Label1.Text = Date.Now.ToString
End Sub
End Class
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as
Answer” if a marked post does not actually answer your question.
Zhi-Qiang Ni...
All-Star
33491 Points
2952 Posts
Microsoft
Re: Animated Gif while processing...
Mar 10, 2009 02:25 AM|LINK
Hi gmcalab,
Using the UpdateProcess is a good choice. The gif picture can be placed inside the UpdateProcess’s ProcessTemplate directly.
Here is my sample code:
.aspx file
.aspx.vb file The related tutorial: http://www.asp.net/learn/ajax-videos/video-123.aspxBest regards,
Zhi-Qiang Ni
Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as
Answer” if a marked post does not actually answer your question.