Recent Posts
- Interview Questions Decoded, Part 2
- Interview Questions Decoded, Part 1
- Explain the ways of authentication techniques in ASP.NET
- What is Authentication in ASP.NET?
- Describe how the ASP.NET authentication process works
- How to save data from dataset?
- How to use performance monitor to diagnose bottlenecks in your application?
- What are the various objects in Dataset?
- Describe the basic schema of a .config file.
- Aren’t XML, SGML, and HTML all the same thing
Tag Cloud
-
application
ASP
assembly
career
class
code
company
constructor
control
Database
difference
Don
employer
file
hiring manager
information
interview
interviewer
job
job seekers
language
manager
method
NET
page
person
position
Process
question
quot
response
salary
Serialization
Server
State
string
system
table
time
type
user
way
web
work
XML
jsp interview questions, 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. 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 -->