index_deal.jsp
来自「JSP程序开发范例宝典范例编号311-316」· JSP 代码 · 共 28 行
JSP
28 行
<%@ page contentType="text/html; charset=gb2312" language="java"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>随机显示图片</title>
</head>
<body>
<%
request.setCharacterEncoding("GBK");
if(request.getParameter("checkcode").equals((String)session.getAttribute("checkcode"))){
%>
<script language="javascript">
alert("验证码正确");window.location.href="index.jsp";
</script>
<%
}else{
%>
<script language="javascript">
alert("您输入的验证码不正确");window.location.href="index.jsp";
</script>
<%}
session.removeAttribute("checkcode");
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?