Tue
10
Oct '06
I installed Apache Tomcat and put a file with the following code in its root foler
…
So my FIRST JSP PROGRAM worked fine!!!
< %
int a = 10;
int b = 10;
int c = a + b;
out.println("Sum = " + c);
%>
Got result “Sum = 20 ” without any error So my FIRST JSP PROGRAM worked fine!!!

Leave a passing comment »