J
Jay W
Guest
when i type in the code below and press the Button 1 - 10 is written in my label. now when i press the button again it writes out 1 - 10 again.
For i As Integer = 1 To 10
lbl1.Text &= i.ToString() & "< br />"
Next
my question is when the button is pressed again why doesn't it realize it has already been pressed so it just has 1 - 10 written out once.
For i As Integer = 1 To 10
lbl1.Text &= i.ToString() & "< br />"
Next
my question is when the button is pressed again why doesn't it realize it has already been pressed so it just has 1 - 10 written out once.