
JSP Elements(2/7)
JSP Scriplet
<% out .pri nt(" Hell o World <BR>"); %>
XML syntax: <jsp:scriptlet>
out.print("HelloWorld<BR>");
</jsp:scriptlet>
JSP scriplet code is inserted into the se rvice method and exec uted
Combining JSP scriplet and JSP expression:
<% Stri ng hello2 = "Hello World <BR>"; %> <%= hello2 %>
(80/95)
Commentaires sur ces manuels