✔ JSP CHAPTERS:-
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
1. JSP Overview
2. JSP Hello World Example
3. JSP Scriplet Tag
4. JSP Declaration Tag
5. JSP Expression Tag
6. JSP Comment Tag
7. JSP Directives
8. JSP Implicit Objects
9. JSP Action Tags
10. Exception Handling
11. JSP Expression Language
JSP Declaration Tag :Previous Next: JSP Comment Tag
JSP Declaration Tag :Previous Next: JSP Comment Tag
JSP Expression tag
Expression tag evaluates the scripting language expression, converts the result into a string. This result is send back to the web user through response object. It writes the result into output stream of the response object.
Syntax: <%= expression %>
Syntax: <%= expression %>
Example:
welcome.jsp
web.xml
Output:
JSP Declaration Tag :Previous Next: JSP Comment Tag