Hi all,
Please help!
I am new to JSP, I shall be thankful if you guys please help me. I wrote
this code in the DOS editor and saved the file with "jsp" extension. When I
load this "xyz.jsp" in "IE 5.0". I don't get any response in the Internet
Explorer.
Will someone guide me what important thing I am missing or what the
procedures are to follow to made and load and jsp file.
***
<html>
<head>
<title>Demo of a JSP Page</title>
</head>
<body>
<!-- Set global information for the page -->
<%@ page language="java" %>
<!-- Declare the character variable-->
<%! char c = 0; %>
<!-- Scriptlet - Java code -->
<%
for (int i = 0; i < 26; i++)
{
for( int j=0; j<26; j++)
{
c = (char) (0x41 + (26-i+j)%26);
<%= c %>
}
}
%>
<BR>
<p>
</body>
</html>
***
Thanking you in advance.
Gill
===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:
http://java.sun.com/products/jsp/faq.html
http://www.esperanto.org.nz/jsp/jspfaq.html
http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets