Please enable JavaScript.
Coggle requires JavaScript to display documents.
JSP (Implicit :pen: :<3: (request (Type: HttpServletRequest
String…
JSP
Implicit :pen: :<3:
-
-
-
-
-
session
Type: HttpSession
session.setAttribute("user",name);
pageContext
Type: PageContext
pageContext.setAttribute("user",name,PageContext.SESSION_SCOPE);
-
-
Script :<3:
-
-
-
The scripting elements provides the ability to insert java code inside the jsp. There are three types of scripting elements: Declaration, Scriplet and Expression
-
Action :<3:
Action Tag
-
-
-
-
-
-
jsp:forward :check:
-
Example: :star:
<jsp:forward page="URL of the another static, JSP OR Servlet page" />text
-