JSP
I am new to JSP. My Apache and Tomcat (working separately) are installed and HTML code runs. Also jsp files without <% %> also run. The following does not and does not produce any results:
</head>
<body>
<h2>JSP Expressions</h2>
<ul>
<li>Current time: <%= new java.util.Date() %></li>
<li>Server: <%= application.getServerInfo() %></li>
<li>Session ID: <%= session.getId() %></li>
<li>The <code>testParam</code> form parameter:
<%= request.getParameter("testParam") %></li>
</ul>
</body></html>
and gives the following:
JSP Expressions
Current time:
Server:
Session ID:
The testParam form parameter:
without values? Any assistance on what is wrong? Is it my Apache or Tomcat?

