How to make "echo" (php) but in jsp?
<%="Hello Word"%>
Or even better
<c:out value="hello World"/>
You can do like this:
out.print("whatever you want to echo");
also:
<c:out value="${variableName}" />
where variableNmae
would the value you want to output.
Hope that helps.
With this print on the html code:
<%
out.print("<h1>"+ +"</h1>");
%>