这个是jsp和servlet开发的在线考试系统

源代码在线查看: delete.java~3~

软件大小: 4997 K
上传用户: whyzhao
关键词: servlet jsp
下载地址: 免注册下载 普通下载 VIP

相关代码

				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() {
				    }
				}
							

相关资源