View Single Post
Old May 28th, 2006, 10:06 PM   #2
DaWei
Resident Grouch
 
DaWei's Avatar
 
Join Date: Jun 2005
Posts: 6,453
Rep Power: 10 DaWei is on a distinguished road
CGI is server side. CGI is an interface specification (a standard, actually) that some server-side languages use to deal with the HTTP protocol. I have no idea if JSP works directly with the HTTP or if it uses another interface. Perl typically uses the CGI. Python can, if one wants to. There are other frameworks. JSP, ASP, et.al., are active server pages. This means one can build response content actively, mix it with static content, whatever, then when the whole response is built, spit it out.
__________________
Abstraction doesn't make it impossible to write bad code; it makes it possible to write superior code.
Contributor's Corner: Grumpy on C++ Exceptions DaWei on Pointers
DaWei is offline   Reply With Quote