这个是jsp和servlet开发的在线考试系统
源代码在线查看: delete.java~3~
package com.gton.bean;
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
public class delete extends HttpServlet {
private static final String CONTENT_TYPE = "text/html; charset=GBK";
//Initialize global variables
public void init() throws ServletException {
}
//Process the HTTP Get request
public void doGet(HttpServletRequest request, HttpServletResponse response) throws
ServletException, IOException {
response.setContentType(CONTENT_TYPE);
PrintWriter out = response.getWriter();
String strtid = request.getParameter("tid");
}
//Process the HTTP Post request
public void doPost(HttpServletRequest request, HttpServletResponse response) throws
ServletException, IOException {
doGet(request, response);
}
//Clean up resources
public void destroy() {
}
}