Class DeleteServlet
java.lang.Object
|
+----javax.servlet.GenericServlet
|
+----javax.servlet.http.HttpServlet
|
+----SQLServlet
|
+----DeleteServlet
- public class DeleteServlet
- extends SQLServlet
-
DeleteServlet()
-
-
doGet(HttpServletRequest, HttpServletResponse)
- This method generates the form
-
doPost(HttpServletRequest, HttpServletResponse)
- doing the deletion
-
init(ServletConfig)
- Ths init Method .
DeleteServlet
public DeleteServlet()
init
public void init(ServletConfig config) throws ServletException
- Ths init Method .
- Overrides:
- init in class SQLServlet
doGet
public void doGet(HttpServletRequest request,
HttpServletResponse response) throws IOException, ServletException
- This method generates the form
- Overrides:
- doGet in class HttpServlet
doPost
public void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException
- doing the deletion
- Overrides:
- doPost in class HttpServlet