Hi
Say I have this in the page_load
Label1.text = "Rendered"
Dim intI as integer
For intI = 1 to 100
response.write (intI.tostring & "<br>"
system.threading.thread.sleep(1000) 'sleep for 1 second
response.flush
next intI
What I would expect is that when the program reaches the first response.flush, I would see in the browser the contents of the label and the first result of the loop.
In fact, neither is happening.
The buffer property for the page is set to true.
Any idea what I am doing wrong?
Thanks
Mark
Say I have this in the page_load
Label1.text = "Rendered"
Dim intI as integer
For intI = 1 to 100
response.write (intI.tostring & "<br>"
system.threading.thread.sleep(1000) 'sleep for 1 second
response.flush
next intI
What I would expect is that when the program reaches the first response.flush, I would see in the browser the contents of the label and the first result of the loop.
In fact, neither is happening.
The buffer property for the page is set to true.
Any idea what I am doing wrong?
Thanks
Mark