Posted on: 4/21/2014 6:40:36 PM | Views : 413

I have a web page that has multiple sections that are updated in the codebehind and I would like to have the page update as the sections are updated but I haven't been able to get the refresh to happen except for when the codebehind completes.
I've tried:
Startbutton_click(object sender, EventArgs e) { Label1.Text = ShortReturnQuery(); UpdatePanel1.Update(); Label2.Text = LongReturnQuery(); UpdatePanel1.Update(): .... } and so on, (including variations such as as including each label in it's own updatepanel, Refreshing using a timer, etc.) but it only updates the page when the codebehind completes. 
Any sugguestions?
Thanks.

Go to the complete details ...