Thread: Servlet vs JSP
View Single Post
  #2 (permalink)  
Old 11-26-2007, 07:52 PM
Shahid Shahid is offline
Member
 
Join Date: Nov 2007
Posts: 2
Shahid is on a distinguished road
JSP allows you to embed java code in the HTML.thus, u can create the webpage using the HTML coding and use java code to handle the logic wherever required.

Servlet doesnt allow u to embed java code in the HTML. Servlet is saved as a separate file, and can be accessed from the HTML document.
Reply With Quote