Please enable JavaScript.
Coggle requires JavaScript to display documents.
JSP (Implict Object (out (JspWriter), request (HttpServletRequest (String…
JSP
Implict Object
-
-
-
-
-
-
-
page context
PageContext
String name=(String)pageContext.getAttribute("user",PageContext.SESSION_SCOPE);
-
-
Directive
Taglib
Declares a tag library, containing custom actions, used in the page <%@ taglib uri="uriofthetaglibrary" prefix="prefixoftaglibrary" %>
Page
Defines page-dependent attributes, such as scripting language, error page, and buffering requirements. <%@ page attribute="value" %>
-
-
-