InterviewSolution
Saved Bookmarks
| 1. |
What are different types of comments used in JSP? |
|
Answer» Basically, there are two TYPES of COMMENTS allowed in the JSP, hidden comments and output comments.
The hidden comments of JSP don’t appear in the generated output in the HTML (EX: <%-- This is hidden comment --%>), while output comments arrear in the generated output ex: <!-- This is output comment -->). |
|