17 Dec 2023 21:31:10 Chuck Caldarale <n82...@gmail.com>:


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

The JARs you added are for JSTL, not EL. And your example uses neither JSTL nor EL.

Confused.

Mark

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to