On 11/9/05, Néstor Boscán <[EMAIL PROTECTED]> wrote: > > Is there a way to know if an action is called from a web form or from an > anchor? >
Put a hidden field in the form and check for it-- if the form wasn't submitted, it won't be there. You can also check request.getMethod() to see if it's POST or GET. -- Wendy