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

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature



Reply via email to