> I've also had similar problems. I found that in nested if statements and
> if...else iterations, if you don't put a return after the sendredirect
> or forward it tries to execute the rest of the code...
> Matt Goss
As far as I know, servlet containers are not supposed to break the rules of
Java programming. A sendredirect sends a redirect response to a client, but
it's not a return from a method call. If you want to return after it, then
return. Otherwise the correct thing a program should do is continue to the
next statement in the code. Don't you think? <wink>
David