WPM
100
CPM
100
Errors
0
Time
15Min
Accuracy
100%
Start JSP code typing Practice. Get Simple JSP codes over javabeans, implicit objects, Standard Action Tags and Other jsp Code examples.Click on the area below to start typing.

S.No.Paragraph : Practice repeatedly whatever you would like most for full fifteen minutes Lessionsclick to Practice
1 Hello World Hello World!
<% out.println("Your IP address is "+request.getRemoteAddr()); %>

Today's date: <%= (new java.util.Date()).toLocaleString()%>

1.1 Simple and first example of jsp
2/* File: TestBean.java */ package action; public class TestBean { private String message = "No message specified"; public String getMessage() { return(message); } public void setMessage(String message) { this.message = message; } }1.2 Using JavaBeans in JSP
3 Unable to initialize Java Plugin 1.3 syntax of using the plugin action
4 Implicit Guru JSP1 <% int num1=10;int num2=20; out.println("num1 is " +num1); out.println("num2 is "+num2); %> 1.4 JSP Implicit Objects
5 1.5 JSP Standard Actions Tags-Typing Kick