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
What is jstl core tags?
What is a jsp expression?
Differentiate between jsp scriptlet tag and declaration tag.
How do I view jsp files in my browser?
How can I extend the functionality of jsp?
How to call java method in jsp page on button click?
Why is jsp used for?
What are request and response objects?
Is jsp page extensible true false?
What are the scopes available in
How to ignore the el expression evaluation in a jsp?
What is jspinit method?
Can a jsp page instantiate a serialized bean?
Differentiate between response.sendredirect(url) and
What is scriptlet tag?