静态的登录界面的设计login.htm,代码如下:
<html>
<머리>
<title>系统登录</title>
<스타일 유형="텍스트/css">...
<!--
.style1 {...}{
글꼴 크기: 18px;
글꼴 두께: 굵게;
}
.style2 {...}{글꼴 크기: 24px}
.style5 {...}{글꼴 크기: 16px}
-->
</style>
</head>
<body bgcolor="papayawhip" width="300" height="300">
<중앙>
<table border="2" bordercolor="black" bgcolor="lightgreen">
<본체>
<tr>
<td><div align="center" class="style1 style2">系 统 登 录
</div></td>
</tr>
<form action="login.jsp" method="post">
<tr>
<td height="28"><span class="style5">사용 이름</span> <input type="text" name="uid" maxlength="20" style="width:150"></td ></tr><br>
<tr>
<td><span class="style5">密 码</span> <input type="password" name="upwd" maxlength="20" style="width:150"></td> </tr><br>
<중앙>
<tr><td><div 정렬="중앙">
<input type="submit" value="登录" >
<input type="reset" value="取消">
</div></td></tr>
</center>
</form>
</tbody>
</table>
</center>
</body>
</html>
将登录用户输入的信息提交到login.jsp页面机型处理,这里为了方便,不执行数据库的访问操作,直接使用sky2098为登录사용 이름과 密码,但에서 实际中是要从数据库中读取的,该jsp页면代码实现如下:
<%...@ page contentType="text/html;charset=GB2312"%>
<%...
if(request.getParameter("uid").equals("sky2098")&&request.getParameter("upwd").equals("sky2098")){
session.setAttribute("login","ok");
session.setMaxInactiveInterval(-1);
%>
<jsp:앞으로 페이지="main.jsp"/>
<%...
}또 다른{
out.println("사용할 이름이 없습니다!");
}
비율
印错误信息,main.jsp页면代码如下:
<%...@ 페이지 contentType="text/html;charset=GB2312"%>
<%...@ include file="checkvalid.jsp" %>
<html>
<머리>
<title>~내 홈페이지에 오신 것을 환영합니다~</title>
</head>
<본문>
<중앙>
~내 홈페이지에 오신 것을 환영합니다~
</center>
</body>
</html>
这个页면체사용<% @ include file="checkvalid.jsp" %>包含了一个jsp页면checkvalid.jsp为了验证输入信息적합법성:
<%...
if(session.getAttribute("login")==null||!session.getAttribute("login").equals("ok")){
response.sendRedirect("login.htm");
}
%>
如果输入信息有误,则回到登录页face, 输入登录信息。
测试登录功能.
启动Tomcat服务器, 에서 IE地址栏中键入URL为: