I have a label control in an updatepanel called lblStatus. I have the follwing code in my codebehind:
for x = 0 to 100
lblstatus.text = x
Threading.Thread.Sleep(1000)
updatepanel.update
next
I cannot seem to get the status to show. It only shows the last number once the loop is complete. Please help.