Does anyone know how to prematurely exit a Case Select statement in ASP (not ASPX). I'm trying something like:
Select Case x
Case "one"
'check second condition
If y=z Then Exit Case
'else do something
Case "Two"
'do something
Case "Three"
'do something else
End Select
Thanks in advance for your help.
Select Case x
Case "one"
'check second condition
If y=z Then Exit Case
'else do something
Case "Two"
'do something
Case "Three"
'do something else
End Select
Thanks in advance for your help.