resetcount.jsp

来自「这个主要是运用JAVA+JAVABEAN实现的网上投票调查系统」· JSP 代码 · 共 27 行

JSP
27
字号
<%@page contentType="text/html;charset=GB2312"%>
<%@page import="java.sql.*"%>
<%@page import="java.util.*"%>
<%@include file="check.jsp"%>
<jsp:useBean id="MyBean" scope="session" class="myjsp.MyBean"/>
<jsp:setProperty name="MyBean" property="*"/>

<% Connection con = MyBean.getConnection(); 
  Statement smt = con.createStatement();
 int questionid;
 questionid = Integer.parseInt(request.getParameter("questionid"));

    String sql = "update Items set Itemcount = 0 where QuestionID = "+questionid;
     smt.executeUpdate(sql);
     response.sendRedirect("mainform.jsp");
 smt.close();
 MyBean.close();  //关闭Connection对象
%>
<html>
<head>
<title>
ResetCount
</title>
</head>

</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?