DIM continue : continue = true Do While statement If (something unwanted) Then continue = false END IF IF continue THEN 'rest of code to execute END IF continue = true 'make sure to reset this every round, either at the end or beginning NEXT
Syed Shakeer Hussain
for( int iterator=0 ; iterator<10 ; iterator++) { if(iterator==5) continue; Page.Response.WriteLine(iterator.ToString()); }
Login to post response