InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Jsp And Servlets ? |
|
Answer» JSP is used mainly for PRESENTATION only. A JSP can only be HttpServlet that MEANS the only supported protocol in JSP is HTTP. But a servlet can support any protocol like HTTP, FTP, SMTP etc. JSP is used mainly for presentation only. A JSP can only be HttpServlet that means the only supported protocol in JSP is HTTP. But a servlet can support any protocol like HTTP, FTP, SMTP etc. |
|