Java Server Page Translation Error
Hello !
I'm new in JSP pages and i try to launch Hello.jsp on Java Web Server(2.0)
I get the following error :
java Server Page Transalation Error
Error during compilation
Can't load class : pagecompile.jsp._Hello
With Hello.jsp :
<html>
<head>
<title>My first JSP page
</title>
</head>
<body>
<%@ page language="java %>
<% System.out.println("Hello World"); %>
</body>
</html>
This is put in the directory public_html
And and call it with http//myhostname:8080/Hello.jsp
I really don't understand what the matter with that !
Thanks very much to help me !

