Servlet Summary »
By Ramakrishna on Oct 16, 2008 in Servlet Summary | 0 Comments
–> A servlet is a Java class that runs on a server, and a servlet for a web application extends the HttpServlet class. –> When you write servlets , you override the doGet and doPost methods to provide the processing that’s required. These methods receive the request object and the response object that are passed [...]
