📄 dealwith.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" language="java"
import="java.sql.*" errorPage=""%>
<%
Integer sign = Integer.valueOf(request.getParameter("sign"));
if (sign == 0) {
if (request.getAttribute("information") != null) {
String information = (String) request
.getAttribute("information");
out.print("<script language=javascript>alert('"
+ information + "');history.go(-1);</script>");
} else {
session.setAttribute("form", request.getAttribute("form"));
out
.print("<script language=javascript>alert('用户登录成功!');window.location.href='head_main.jsp';</script>");
}
}
if (sign == 1) {
String result = (String) request.getAttribute("result");
if (result.equals("success")) {
session.setAttribute("form", request.getAttribute("form"));
out
.print("<script language=javascript>alert('用户注册成功!');window.location.href='head_main.jsp';</script>");
}
if (result.equals("fail")) {
out
.print("<script language=javascript>alert('用户注册失败!');history.go(-1);</script>");
}
}
if (sign == 2) {
session.invalidate();
response.sendRedirect("index.jsp");
}
if (sign == 3) {
com.wy.form.VoteForm voteForm = new com.wy.form.VoteForm();
com.wy.dao.VoteDao voteDao = new com.wy.dao.VoteDao();
String[] voteID = request.getParameterValues("voteID");
if (voteID == null) {
out
.print("<script language=javascript>alert('请进行投票!');history.go(-1);</script>");
} else {
for (int i = 0; i < voteID.length; i++) {
voteForm.setId(Integer.valueOf(voteID[i]));
voteDao.operationVote("投票", voteForm);
}
application.setAttribute("vote","voteSuccess");
out
.print("<script language=javascript>alert('投票成功,请重新查询投票结果!');window.location.href='head_VoteQuery.jsp';</script>");
}
}
if (sign == 4) {
}
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -