Writing a program in JSP is nothing but making use of various tags which are available in JSP. In JSP we have three categories of tags, they are as follows…
Category:
JSP
-
-
The JSP API consists of two packages: javax.servlet.jsp javax.servlet.jsp.tagext javax.servlet.jsp package The javax.servlet.jsp package has two interfaces and classes.The two interfaces are as follows: JspPage HttpJspPage The classes are as…
-
The lifecycle of a JavaServer Pages follow these phases: Translation of JSP Page Compilation of JSP Page Classloading (the classloader loads class file) Instantiation (Object of the Generated Servlet is…
-
JSP stands for JavaServer Pages is a Java standard technology that enables you to write dynamic, data-driven pages for your Java web applications. It is a server side technology. In…