checkmemberresult.jsp~4~

来自「这是一个用Struts做出来的网上商城的源代码」· JSP~4~ 代码 · 共 28 行

JSP~4~
28
字号
<%@ page contentType="text/html; charset=gb2312" %>
<%@page import="com.domain.MemberForm"%>
<%@page import="com.tool.Chinese"%>
<jsp:useBean id="dao" scope="page" class="com.dao.MemberDao"/>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>会员登录结果</title>
</head>
 <link href="../css/css.css" rel="stylesheet" type="text/css">

<body>
<p>&nbsp;</p>
<div align="center">
  <p><strong>
    <%if(request.getAttribute("result")==null){%>
  会员登录成功!!!
  <%}else{%>
      <%=request.getAttribute("result")%>
	<meta http-equiv="refresh" content="3;URL=../index.jsp">
  <%}%>
  </strong></p>

</div>
</body>
</html>

⌨️ 快捷键说明

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