Ross, Douglas wrote:
>Sorry, I thought my shorthand was obvious.
>
>The 1 line short hand was intended to represent any kind of String
>compare:
>
>String action = request.getParameter("action");
>if("new".equalsIgnoreCase(action)){
> // action is new
>}else if("edit".equalsIgnoreCase(action)){
> // or action is edit
>}else if("delete".equalsIgnoreCase(action)){
> // or action is delete
>}
>
>Laziness will get me every time! Hope you didn't spend too much time
>debugging this. I wil try to be more specific in the future.
>
I didn't have to debug anything. I just wanted to point out that there
was an error so that people did not get confused with your "shorthand".
Michael
---------------------------------------------------------------------
To unsubscribe, e-mail: taglibs-user-unsubscribe@jakarta.apache.org
For additional commands, e-mail: taglibs-user-help@jakarta.apache.org
|