answersLogoWhite

0


Best Answer

JSP stands for JAVA SERVER PAGES, where as CGI stands for COMMON GATEWAY INTERFACE.

In CGI, whenever a multiple requests of the same dynamic web page is made by the client to the server, a new process is cerated of the corrosponding CGI program, for each an every request generated as such..

this is not the case in JSP..

in JSP, when the first request is made for a dynamic web page..its corrosponding class file an hence the servlet is then cached in the memorey, and hence new threads are generated for the futher requests made, saving resources..

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Difference between JSP and CGI programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Basic Math

Difference between ASP and JSP?

The main difference between ASP and JSP is that JSP is more script like and includes Java, whereas ASP does not. Both of these are server side languages.


What is the difference between JSTL and JSP?

The Difference between JSTL and JSP is that, JSP lets the person add embedded Java code into HTML pages. Also JSP allows the person to define their own tags. JSTL is just a standard tag library provided by Sun to carry out common tasks.


What is the difference between applet and jsp?

Applet is an executable file that is automatically downloaded when we open a browser. Swing applications can operate on local data when the network is not there.


What are jsp actions?

JSP actions are XML tags that direct the server to use existing components or control the behavior of the JSP engine. JSP Actions consist of a typical (XML-based) prefix of "jsp" followed by a colon, followed by the action name followed by one or more attribute parameters. There are six JSP Actions: < jsp : include / > < jsp : forward / > < jsp : plugin / > < jsp : usebean / > < jsp : setProperty / > < jsp : getProperty / >


What is the difference between ASP and JSP?

ASP stands for "Active Server Pages"JSP stands for "Java Server Pages"asp(classic) is interpreted, which means the code has to be read each time a page is called. jsp is compiled into java classes which makes for a much faster page generation.Classic asp(not the new .NET) has to rely on Active X, COM or other Microsoft technologies to really enhance functionality of the code. jsp can bring in every java capability.Handling email in asprequires external components such as CDONTS or aspMail and was tricky to implement. JavaMail for jsp was a 10 minute download and was much easier to use.

Related questions

Difference between ASP and JSP?

The main difference between ASP and JSP is that JSP is more script like and includes Java, whereas ASP does not. Both of these are server side languages.


What is the difference between JSTL and JSP?

The Difference between JSTL and JSP is that, JSP lets the person add embedded Java code into HTML pages. Also JSP allows the person to define their own tags. JSTL is just a standard tag library provided by Sun to carry out common tasks.


How do you connect jsp and HTML?

JSP and HTML are similar in some way or other. JSP is one which has work on Java Programming as well.


What are the different technologies available to make webpage dynamic?

CGI,asp.net,PHP,JSP


What is the difference between JSP and JSPX?

http://diaryproducts.net/about/programming_languages/java/convert_jsp_pages_to_jsp_documents_jspx_with_jsp2x


What is the difference between JSP hosting and other kinds of hosting?

The main difference between JSP hosting and other kinds of hosting is simply the use of Javascript. While some things may differ between the different types, there are also a lot of similarities.


What is wcs and jsp?

JSP is a computer programming language like ASP but Linux as far as i know WCS is Web Coverage Service


Difference between jsp and php?

JSP stands for Java Server Pages whereas PHP stands for Hypertext PreProcessor. PHP is a scripting language whereas JSP is a full fledged technology. JSP is much more powerful and has more features than PHP


What is difference between custom JSP tags and beans?

They are two totally different concepts and are entirely different when compared to one another. The similarity is that - they both are used by JSP Pages to enhance the features and functionality of the JSP Technology


What does the programming term JSP mean?

JavaServer Pages (JSP) is a server-side programming technology that enables the creation of dynamic, platform-independent method for building Web-based applications. JSP have access to the entire family of Java APIs, including the JDBC API to access enterprise databases.


What are types of web technologies?

Web technologies related to the interface between web servers and their clients. So there are a large number of interfaces available these days. A few of them are: CGI Perl PHP Jquery & AJAX Struts2 (MVC 2 Arch.) JSP ASP ASPX and various others...


What is the difference between requestgetattribute and requestgetParameter in JSP?

request.getAttribute() is used on the Server side Java code to get values submitted from the form onto the Servlet or other java classes request.getParameter() is used on the JSP page to get values sent by the servlet and display it in the jsp page