Differentiate between <jsp:include page=…> and <%@include file=…>.
Give an example of using your own tags.
Can we use the exception implicit object in any jsp page?
What is jstl core tags?
What is tld file?
Why does _jspService() start with an ‘_’ but other lifecycle methods do not?
What is server side programming language?
What are the advantages of jsp over servlet?
What are the types of directives in jsp?
What is difference between javascript and jsp?
Java Server Page I can use a function in two ways: Either I declare <jsp:useBean id="myBean" scope="session" class="mypack.mysubpack.MyClass" /> or I declare <%@ page import = "mypack.mysubpack.MyClass" %> In each case I can call a function later by coding MyClass.myFunction(); So what is the difference between the two variantes? Why are Beans invented if we don't need them because we have the import statement ? please guide me its an humble request to you reader if u know n i'll be thankful to you...........
What are the different directives in jsp?
Give the use of session object.