-
State true or false -- While using request.getRequestDispatcher(path) we need to give the absolute path of the object
Skill/Topic: Programming ConstructsA) TrueB) FalseExplanation: request.getRequestDispatcher(path): In order to create it we need to give the relative path of the resource, context.getRequestDispatcher(path): In order to create it we need to give the absolute path of the resource.
-
-
-
How do I use comments within a JSP page?
You can use "JSP-style" comments to selectively block out code while debugging or simply to comment your scriptlets. JSP comments are not visible at the client.For example:<%-- the scriptlet is now commented out<%out.println("Hello World");%>--%>You can also use HTML-style comments anywhere within your JSP page. These comments are visible at the client. For example:<!-- (c) 2004 javagalaxy.com...
-
-
-
-
-
The response.sendRedirect("……..”); is the response implicit object to redirect the browser to the different resource
Skill/Topic: Programming ConstructsA) TrueB) False
-
-
-
These ____________ listeners are notified when the Servlet context (i.e., the Web application) is initialized and destroyed/
Skill/Topic: JSP Thread ModelA) Session AttributeB) Servlet context attributeC) Session ListenersD) Servlet context listeners
-
-
When do we use JSP include and include directive?
At what situation we use JSP include and include directive
-
-
-
-
-
How to implement pagination from database level.
Please provide me any sample source code for the same
-
JSP Interview Questions
Ans