Ah neat.  I was wondering how to use the basic idea.  I showed it as out.println but I 
knew there had to be a better way.  Thanks much Antonio.

-- 
George Hester
__________________________________
"Antonio Fiol Bonnín" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED]
> George Hester wrote:
> 
> >Thanks.  I wish Damon Hougland and Aaron Tavistock knew that before they published 
> >their Sun sanctioned book.  It would have saved me a lot of frustration.  I really 
> >expected Sun's CORE books to be better then Wrox.
> >
> >Their example was this which failed:
> >
> ><% switch (day) { %>
> ><% case 1: %>
> >   <font color="blue" size="+1">Sunday</font>
> >   <% break; %>
> ><% case 2: %>
> >   <font color="blue" size="+1">Monday</font>
> >   <% break; %>
> ><% default: %>
> >   <font color="blue" size="+1">No day</font>
> >   <% break; %>
> ><% } %>
> >
> >  
> >
> 
> I believe the following would work like a charm:
> 
> <% switch (day) { 
>    case 1: %>
>    <font color="blue" size="+1">Sunday</font>
> <% break; 
>    case 2: %>
>    <font color="blue" size="+1">Monday</font>
> <% break; 
>    default: %>
>    <font color="blue" size="+1">No day</font>
> <% break; 
>    } %>
> 
> 
> Keep the elements that need to be together really together.
> 
> 
> Antonio Fiol
>


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to