- From: Mike <mxxm@flashmail.com>
- Date: Sun, 10 Dec 2000 06:12:52 -0500 (EST)
- To: <www-jigsaw@w3.org>
Hello!
I have a problem with page compilation.
I am following the Tutorial and I put MyPage.jhtml
in Jigsaw/Jigsaw/WWW/MyPage.jhtml.
The I call it with http://localhost:port/MyPage.jhtml, and
it creates MyPage.java and MyPage.class in CompiledPages
directory, but nothing appears in the explorer.
When I reload it it appears:
My Page
int age = 42;
A Print
out.println ("age : "+age);
Another Print
age : age
A Test
if (age > 100) { out.println("more than 100"); } else { out.println("less
than 100"); }
Another Test
if (age > 100) { more than 100 } else { less than 100 }
A Loop
for (int i = 0; i < 80; i++) { out.println("*"); }
Another Loop
for (int i = 0; i < 80; i++) { * }
It seems that it doesn't understand the <java> Tag.
Could you guess where is the problem? Thanks.
dcordobes@flashmail.com
Received on Sunday, 10 December 2000 15:02:50 UTC