hi all
i am new to jsp
i am looking in to this example first...

<html>

<head>

<title>My first JSP page

</title>

</head>

<body>

<%@ page language="java" %>

<% out.println("Hello World"); %>

</body>

</html>

and save as helloworld.jsp
at present am using linux machine i.e. fedora7.
when i open this page through firefox browser.. it displaying like this

<%@ page language="java" %> <% out.println("Hello World"); %>

can you please help me

thank you in advance

Because jsp is not html (which is what you've written). JSP produces html, when compiled and executed by an application server (e.g. Tomcat, WebSphere, WebLogic, etc).

Go through this tutorial (its for the last version, but hey) http://java.sun.com/j2ee/1.4/docs/tutorial/doc/

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.