I'm new to ASP.NET, so this I'm sure is a simple question. I'm trying to keep the user posted as to what the code is doing as my code runs. Something like
This code I have now doesn't work right. You don't see the the first one. All you ever see is the "Finally finshed, thanks for waiting". It's like it doesn't update or refresh the text displayed to the user till the sub (button click event) is completely done running.
Visual Basic:
'Some code here
'Show user what is going on
Span2.InnerHtml = "Still working...please hold"
'Some more code that takes a while
'Show user what is going on
Span2.InnerHtml = "Finally finshed, thanks for waiting"