Programming Tutorials

Question: What is an output comment in JSP?

By: Guru Singh in Interview Tutorials on 2008-08-24  

Question: What is an output comment in JSP?

Answer:  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. You can see the comment by viewing the page source from your Web browser.

JSP Syntax
<!-- comment [ <%= expression %> ] -->

Example 1

<!-- This is a commnet sent to client on
<%= (new java.util.Date()).toLocaleString() %>
-->

Displays in the page source:
<!-- This is a commnet sent to client on January 24, 2004 -->

 

 

 

 





Add Comment

* Required information
1000

Comments

No comments yet. Be the first!

Most Viewed Articles (in Interview )

Question: Difference between forward and sendRedirect in JSP?

Explain garbage collection?

What is Collection API?

Interview Question: What is the difference between Message Driven Beans and Stateless Session beans?

Differentiate between .ear, .jar and .war files.

Interview Question: What is re-entrant. Is session beans reentrant. Is entity beans reentrant?

What are all the different scope values for the tag?

The output of System.out.println(5>>2) in Java

What is the difference between interface and abstract class?

Interview Question: Write code of any Action Class?

What is similarities/difference between an Abstract class and Interface?

Is Iterator a Class or Interface? What is its use?

Interview Question: Do ActionForms have to be true JavaBeans?

What do you understand by a container in J2EE?

Question: How would you go about analyzing performance of an application?

Latest Articles (in Interview)