Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

make update message appear

Status
Not open for further replies.

davedizzle15

Technical User
Feb 28, 2007
14
US
when i click an update button on my webpage i have an animated gif pop up for 3 secs that says "updating"... here is the code:

System.Threading.Thread.Sleep(3000)


when this message disappears how can u make a message appear that reads "Updated"?
 
we are in AJAX, there is not full page refresh....i was already using a label for the "UPDATED" message as well

here is the whole vb code


Protected Sub UpdateButton_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs)
System.Threading.Thread.Sleep(3000)



End Sub
 
That doesn't make any sense. Your code doesn't reference a Label anywhere.

Also, I notice you haven't responded to any of the posts you have made to either thank the person who offered you the help nor to say whether it worked or not. If you want to get help from these forums, I suggest you read the FAQ in my signature (especially items #15 and #16).


____________________________________________________________
Mark,
[URL unfurl="true"]http://aspnetlibrary.com[/url]

Need help finding an answer? Try the Search Facility or read FAQ222-2244 on how to get better results.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top