|
|
|
|
|
|
c****u 发帖数: 5 | 1 I got a problem when i write the asp code in vb script.
Like in C++:
if a = b
break;
I am wondering how to change into vb script? Is there anything
in vb script which can take place the "break" here?
Thanks a lot! | g******p 发帖数: 18 | 2
Not quite sure but:
if a = b then
exit
end if
【在 c****u 的大作中提到】 : I got a problem when i write the asp code in vb script. : Like in C++: : if a = b : break; : I am wondering how to change into vb script? Is there anything : in vb script which can take place the "break" here? : Thanks a lot!
| p*****e 发帖数: 58 | 3
shoud be
exit sub
exit for
exit do
exit function
exit property
【在 g******p 的大作中提到】 : : Not quite sure but: : if a = b then : exit : end if
|
|
|
|
|
|
|