1. Example of Scriptlet
<html> <head> </head> <% int count=0; %> <body> Page Count is <% out.println(++count); %> </body> </html> |
2. Example of JSP Scriptlet Tag
index.html
<form method = "post' action = "welcome.jsp" Name <input type="text" name = "user"> <input type="submit value="submit"> </form> |
welcome.jsp
<html>
|