Answer Posted / janet
JSP is a dynamic scripting capability for web pages that
allows Java as well as a few special tags to be embedded
into a web file (HTML/XML etc). The suffix traditionally
ends with .jsp to indicate to the web server that the file
is a JSP file.JSP is a server side technology you can't do
any client side validation with it.
The advantages are :
1. the JSP assists in making the HTML more
functional.Servlets on the other hand allow outputting of
HTML but it is a tedious process.
2. it is easy to make a change and then let the JSP
capability of the web server you are using deal - compiling
it into a servlet and running it.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How to forward a request to another source?
What is taglibs?
Can we implement an interface in a jsp?
What are the life-cycle methods for a jsp?
Which categories can be divided jstl tags, give examples.
What is tag file?
Why are the request.getrequestdispatcher() and context.getrequestdispatcher() used?
Explain various implicit objects in expression language.
What is the
What are the benefits of pagecontext implicit object?
Which language is used to write servlets and jsp?
Define jsp declaration?
Why are jsp pages the preferred api for creating a web-based client program?
List down the major differences between the jsp custom tags and java beans.
How did you implement caching in jsp?