Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: Javaskool Category

What is a Declaration ? 0

What is a Declaration ?

A declaration declares one or more variables or methods for use later in the JSP source file. A declaration must contain at least one complete declarative statement. You can declare any number of variables...

What is an Expression? 0

What is an Expression?

An expression tag contains a scripting language expression that is evaluated, converted to a String, and inserted where the expression appears in the JSP file. Because the value of an expression is converted to...

What is a Hidden comment? 0

What is a Hidden comment?

A comments that documents the JSP page but is not sent to the client. The JSP engine ignores a hidden comment, and does not process any code within hidden comment tags. A hidden comment...

What is a output comment? 0

What is a output comment?

A comment that is sent to the client in the viewable page source.The JSP engine handles an output comment as uninterpreted HTML text, returning the comment in the HTML output sent to the client....

How does JSP handle run-time exceptions? 0

How does JSP handle run-time exceptions?

You can use the errorPage attribute of the page directive to have uncaught run-time exceptions automatically forwarded to an error processing page. For example: <%@ page errorPage=\”error.jsp\” %> redirects the browser to the JSP...