why ,we are using jsp and html.which one is better?
Answers were Sorted based on User's Feedback
Answer / sivasubramanian.k
JavaServer Pages (JSP) is a Java technology that allows
software developers to dynamically generate HTML, XML or
other types of documents in response to a Web client
request. The technology allows Java code and certain pre-
defined actions to be embedded into static content.
The JSP syntax adds additional XML-like tags, called JSP
actions, to be used to invoke built-in functionality.
Additionally, the technology allows for the creation of JSP
tag libraries that act as extensions to the standard HTML
or XML tags. Tag libraries provide a platform independent
way of extending the capabilities of a Web server.
JSPs are compiled into Java Servlets by a JSP compiler. A
JSP compiler may generate a servlet in Java code that is
then compiled by the Java compiler, or it may generate byte
code for the servlet directly. JSPs can also be interpreted
on-the-fly reducing the time taken to reload changes.
So JSP is better than HTML as it contains both static and
dynamic content..
| Is This Answer Correct ? | 10 Yes | 1 No |
jsp is used for both static and dynamic contents in web
applications. But html is only for static contents.
So, as per my knowledge jsp is better than html
| Is This Answer Correct ? | 8 Yes | 0 No |
String is a immutable objects . it means that string does not change........... But it will be chang......... { String s="kapil"; String s1="raj"; String s=s1; then print(.......) The String has been changed .. how it is possible and why its called immutable objects
How do you remove duplicates from an array in java?
What is the independent variable in an experiment?
What is return data type?
what is difference between prepare stetement and callable starement with example?
What is mean by collections in java?
What is lazy programming?
What are the advantages of unicode?
What are the difference between string, string builder, and string buffer in java?
What is high level language in computer?
What are inner and anonymous class?
What are the access modifiers available in java?