> If the validation passes, > I would like the user's browser > to display different ZPTs based on > the script's decision logic. Try to use redirect. In case of error you return an error message; why in case of succes you don't follow this way?: return r.RESPONSE.redirect('success.html') ( where r = context.REQUEST ) > thanks in advance Hope this helps. Paolo