JSP Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 1604 Page Views: 

What is JSP?



Posted By: Avi Date: 14 September 2009 05:34:10 AM
 Answer:

JSP is a technology that combines HTML/XML markup languages and elements of Java programming Language to return dynamic content to the Web client. It is normally used to handle Presentation logic of a web application, although it may have business logic.


Posted By: eTechPlanet


Date: 14 September 2009 05:34:10 AM

Short for Java Server Page. A server-side technology, Java Server Pages are an extension to the Java servlet technology that was developed by Sun.

JSPs have dynamic scripting capability that works in tandem with HTML code, separating the page logic from the static elements -- the actual design and display of the page -- to help make the HTML more functional(i.e. dynamic database queries).


Posted By: Daniel


Date: 16 February 2010 03:34:58 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 8HOlje
Related Questions
JSP :  What are the different types of ServletEngines?

 What are the different types of ServletEngines?

1: Standalone ServletEngine is a server that includes built-in support for servlets. 2: Add-on Serv....
Category: JSP Date: 11/5/2010 8:24:58 PM
JSP : Can destroy() method be called on servlets from service method ?
JSP : What is a WAR file?

What is a WAR file?

WAR(Web Archive) is a compressed version of web application and used to deploy the web application.
Category: JSP Date: 11/5/2010 3:41:59 PM
JSP : What is servlet context ?

What is servlet context ?

The servlet context is an object contains a information about the Web application and container, it ....
Category: JSP Date: 11/5/2010 1:30:56 PM
JSP : What is the difference between <%@ include ...> and <jsp:include> ?

What is the difference between <%@ include ...> and ?

“@ include” is static include; where the contents of the file will get included on Translation phase....
Category: JSP Date: 11/5/2010 11:09:56 AM