Is it possible to update textbox without post back? i'm try to have a counter on my vb codes for example
textbox = 1
then it will turn to = 2
on my vb codes i have:
dim i as integer
for i = 1 to 10
textbox1.text = i
next
this working but i refresh the page and turn into 10.
is this possible using vb.net codes.
Go to the complete details ...