Table of Contents
Previous Section
<HTML> <WEBOBJECTS NAME="PAYING_CUSTOMER">Thank you for your order!</WEBOBJECTS> <WEBOBJECTS NAME="WINDOW_SHOPPER">Thanks for visiting!</WEBOBJECTS> </HTML>
PAYING_CUSTOMER: WOConditional {condition=payingCustomer;}; WINDOW_SHOPPER: WOConditional {condition=payingCustomer; negate=YES;};
- payingCustomer { if (/* ordered something */) { return YES; } return NO; }
Table of Contents
Next Section