[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
[Home]
comments
GNUJSP misinterprets the Java /* */ comment tags within the <% ... %> JSP tags.
If the comment contains %>, GNUJSP interprets this as end of script code and
fails to compile the page.
Small jsp example follows - it doesn't compile.
-------------
<%
/*
whatever you want here not to be parsed as Java
%> (remove this line and it works!)
*/
out.println("This is supposed to be displayed via Java code.");
%>
-------------
Primoz