I have a problem,, I have to stop one Loading class on button click. I already checked some forums related to this. But didnt find exact solution.
for example:
Public Sub LoadDropDown()
Dim it As Integer
For it = 0 To 1000000
DropDownList1.Items.Add(it)
Next
End Sub
I have to load the drop down on Load button click, and have to cancel that on cancel button click
Help me.
Thank You
Rajs