How to run a .jsp file on a live server
I want to run a .jsp file on a live server. Here is the content of test.jsp:
<html>
<head><title>A Comment Test</title></head>
<body>
<p>
Today's date: <%= (new java.util.Date()).toLocaleString()%>
</p>
</body>
</html>
When I want to run it at tests.bendali.co.za/test.jsp, all I get is the
file content. Do I need to install Apache Tomcat on the server for it to
work?
Thanks in advance.
No comments:
Post a Comment