new to JSP - Basic doubt
[nobr]I am very new to JSP.
Just wrote my first program and deployed it in Apache Web Server.
<html>
<head>
Title
</head>
<body>
<br>
<b>Heading</b><br>
This is the body<br>
Below are the JSP program.
<!--%@ page language="java" %-->
<% out.println("Hello World..............................................."); %>
</body>
</html>
Above works fine.
How does the program get reference tooutobject ofPrintStreamclass since we have directly used out.println?
if I replace the line <% out.println("Hello World..............................................."); %>
with <% System.out.println("Hello World..............................................."); %>
it doesent seem to work.
Am I missing on something very basic?[/nobr]

