cyprus106
Programmer
- Apr 30, 2001
- 654
I'm relatively new to ASP, and while coding, I was using a series of if...then statements and came across the need to stop reading the asp code. for example:
if Request("StopMe"
= "true" then
;stop reading asp
else
do whatever functions you need to do
end if
I need to break out of a loop or stop reading the code entirely. I need something equivilent to C's 'return' and it's 'goto' functions. Is this a possibility?
Thanks! Cyprus
if Request("StopMe"
;stop reading asp
else
do whatever functions you need to do
end if
I need to break out of a loop or stop reading the code entirely. I need something equivilent to C's 'return' and it's 'goto' functions. Is this a possibility?
Thanks! Cyprus