关于if then return,该怎么解决

关于ifthen return请教一下。如果其中gf(sk, this)0的话。return是跳出这段还是继续进入死循环?if up(req

关于if then return

请教一下。如果其中gf("sk", this)=0的话。return是跳出这段还是继续进入死循环?
if up(request) = 'TRUE' then
if gf("sk", this) = 0 then
return
end if 
end if

[解决办法]
跳出这段,不执行下面的语句

相当于 if up(request) = 'TRUE' and gf("sk", this) = 0 then return