Re: JSP documentation

2002-03-05 Thread Lev Assinovsky
http://java.sun.com/products/jsp/tags/11/tags11.html explains syntax of all JSP tags (like <%=). Ming wrote: > Hi, > > I'm very new at Tomcat and JSP programming but have written some JSP scripts. > Can someone tell me what's the best way to write in-program > documentation? I mean the documenta

RE: JSP documentation

2002-03-04 Thread Brett Porter
For Java, you use Javadoc (go to java.sun.com, don't ask those questions here). For JSP, you can use <%-- for comments not passed to the user --%> But you don't get any Javadoc from that. I believe it is enough documentation for a JSP and the rest should be external (view structure). - Brett --