> On Dec 16, 2023, at 23:05, Arbol One <arbol...@hotmail.ca> wrote:
> 
> Hello.
> 
> In my NetBeans IDE, I have a ANT web project, to which I have added under 
> Libraries the JSTL 1.2.7 - jstl-impl.jar and the JSTL 1.2.7 - jstl-api.jar 
> libraries. However, when adding this code :
> ----
> *<jsp:text>
> <h1>Hello JSP EL!</h1>
> </jsp:text>*


Tags are not allowed inside <jsp:text> elements. The following should work:


<h1>
<jsp:text>
Hello JSP EL!
</jsp:text>
</h1>


  - Chuck

Reply via email to