I am working on a block of code that contains an outer loop and an inner loop. Within both loop statements, I have several if/else conditions. Is it possible for me to use breaks and continue statements on the outer loop, even if I am currently within an if condition that is within the inner loop?
I have learned that ASP provides a both a break and continue statement. However, what I am really looking for is something similar to break labels. I have used break labels many times in JavaScript and Java. Can you help me please?
I have learned that ASP provides a both a break and continue statement. However, what I am really looking for is something similar to break labels. I have used break labels many times in JavaScript and Java. Can you help me please?