Steve Gower wrote:

> Please read my sad story and convince me that JSP is a real development
> environment and not merely a worthless hack that looks good in press
> releases and white papers.
>
> ....
>
> Here's a sample from my JSP page (Note, it uses a database bean to display
> queried info):
>
>   <b>Date Menu:</b>
>   <select name="date">
>   <%while(db.next()) { %>
>      <option value="<%= db.get("cDate") %>"><%= db.get("cDate") %>
>   <%} // end of while loop %>
>   </select>
>

The problem is probably in the embedded comment above: <%} // end of while loop %>

We had the same problem.  JWS handles the situation properly but others don't.

Try removing the embedded comment.

cc

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to