G
Guest
I'm hoping this is a classic question, but the answer to it would help me
with a lot of things.
As you can see below, this code will never display the "Getting data...." text
in the lblCheck - because it needs to do a round-trip to the server - first.
And when it gets back, my other routine will over-write the text as "34
records found"
Protected Sub btnSearch_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnSearch.Click
Me.lblCheck.Text = "Getting data....."
SearchActionList()
End Sub
with a lot of things.
As you can see below, this code will never display the "Getting data...." text
in the lblCheck - because it needs to do a round-trip to the server - first.
And when it gets back, my other routine will over-write the text as "34
records found"
Protected Sub btnSearch_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnSearch.Click
Me.lblCheck.Text = "Getting data....."
SearchActionList()
End Sub