RE: Bug with Java Code and HTML Comments?

2000-11-08 Thread Stanislav Maximov
ect: Bug with Java Code and HTML Comments? > > > All, > > Something else I just noticed... > > Java code (scriptlets) within HTML comments is ignored... while > JSP Expressions > are evaluated... does this not make sense? Or is it just me? > > Here is a simple exampl

Bug with Java Code and HTML Comments?

2000-11-08 Thread Dylan Parker
All, Something else I just noticed... Java code (scriptlets) within HTML comments is ignored... while JSP Expressions are evaluated... does this not make sense? Or is it just me? Here is a simple example : <% int val = 1; %> The value is: <%=val%> The value is