jsp tag
Is there a reason why a jsp tag in a xml format doesn't work with the
implicit out object?
<jsp:scriptlet>
out.println("<p><b>text</b></p>");
</jsp:scriptlet>
I get following error : unterminated <jsp:scriptlet> tag
When i use
<%
out.println("<p><b>text</b></p>");
%>
it works.
thx,
.
Relevant Pages
- Re: placement of implicit none
... I seem to recall reconstructing a reason that ... Implicit statements in general can depend on other names, ... musings and viewpoint, of course. ... (comp.lang.fortran) - Re: Help please with a small code conversion
... I have a third reason, which is rather compelling for my purposes. ... As you know, I prefer IMPLICIT NONE, but in automatically ... declarations and the code to separate files then combine them ... The code generator is at ... (comp.lang.fortran) - Re: IMPLICIT NONE (F2k8+/-)
... > IMPLICIT NONE should finally be made default beginning at F2k8. ... > switches can be specified to get the older behavior. ... > no good reason to continue this way. ... The IBM 1130 compiler could do ... (comp.lang.fortran) - Re: Scope of implicit none
... reason that one was done and not the other. ... compiler that already implements implicit none. ... as having been a motivator. ... (comp.lang.fortran) - Defined operators and underscore
... What would be a good reason for not allowing underscores in defined ... interface operator ... implicit none ... (comp.lang.fortran) |
|