jkelly2956
Programmer
I have a list of three object method calls from ASP page that I want to all succeed or all fail. Is this possible like the following
if something then
oObject.thisMethod()
oObject.otherMethod()
oObject.LastMethod()
end if
If any one of these fails I want them all to fail...
if something then
oObject.thisMethod()
oObject.otherMethod()
oObject.LastMethod()
end if
If any one of these fails I want them all to fail...