静态的登录界面的设计login.htm,代码如下:
Html代码
1. <html>
2. <head>
3. <title>系统登录</title>
4. <style type="text/css">...
5. <!--
6. .style1 {...}{
7. font-size: 18px;
8. font-weight: bold;
9. }
10. .style2 {...}{font-size: 24px}
11. .style5 {...}{font-size: 16px}
12. -->
13. </style>
14. </head>
15. <body bgcolor="papayawhip" width="300" height="300">
16. <center>
17. <table border="2" bordercolor="black" bgcolor="lightgreen">
18. <tbody>
19. <tr>
20. <td><div align="center" class="style1 style2">系 统 登 录
21. </div></td>
22. </tr>
23. <form action="login.jsp" method="post">
24. <tr>
25. <td height="28"><span class="style5">用户名</span> <input type="text" name="uid" maxlength="20" ></td></tr><br>
26. <tr>
27. <td><span class="style5">密 码</span> <input type="password" name="upwd" maxlength="20" ></td></tr><br>
28. <center>
29. <tr><td><div align="center">
30. <input type="submit" value="登录" >
31. <input type="reset" value="取消">
32. </div></td></tr>
33. </center>
34. </form>
35.
36. </tbody>
37. </table>
38. </center>
39. </body>
40. </html>
<html>
<head>
<title>系统登录</title>
<style type="text/css">...
<!--
.style1 {...}{
font-size: 18px;
font-weight: bold;
}
.style2 {...}{font-size: 24px}
.style5 {...}{font-size: 16px}
-->
</style>
</head>
<body bgcolor="papayawhip" width="300" height="300">
<center>
<table border="2" bordercolor="black" bgcolor="lightgreen">
<tbody>
<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" ></td></tr><br>
<tr>
<td><span class="style5">密 码</span> <input type="password" name="upwd" maxlength="20" ></td></tr><br>
<center>
<tr><td><div align="center">
<input type="submit" value="登录" >
<input type="reset" value="取消">
</div></td></tr>
</center>
</form>
</tbody>
</table>
</center>
</body>
</html>
将登录用户输入的信息提交到login.jsp页面机型处理,这里为了方便,不执行数据库的访问
操作,直接使用sky2098作为登录用户名和密码,但在实际中是要从数据库中读取的,该jsp页面代码实现如下:
Java代码
1. <%@ page contentType="text/html;charset=GB2312"%>
2. <%
3. Parameter("uid").equals("sky2098")&&Parameter("upwd").equals("sky2098")){
4. session.setAttribute("login","ok");
5. session.setMaxInactiveInterval(-1);
6. %>
7. <jsp:forward page="main.jsp"/>
8. <%
9. }else{
10. out.println("用户名或密码输入错误!");
11. }
12. %>
<%@ page contentType="text/html;charset=GB2312"%>
<%
Parameter("uid").equals("sky2098")&&Parameter("upwd").equals("sky2098")){
session.setAttribute("login","ok");
session.setMaxInactiveInterval(-1);
%>
<jsp:forward page="main.jsp"/>
<%
}else{
out.println("用户名或密码输入错误!");
}
%>
如果登录成功,则设定login的值为ok,提交到下一步验证页面,则进入main.jsp页面,否则,如果输入的用户名和密码不合法就打印错误信息,main.jsp页面代码如下:
Java代码
1. <%@ page contentType="text/html;charset=GB2312"%>
2. <%@ include file="checkvalid.jsp" %>
3. <html>
4. <head>
5. <title>~WELCOME TO MY HOMEPAGE~</title>
6. </head>
7. <body>
8. <center>
9. ~WELCOME TO MY HOMEPAGE~
10. </center>
11. </body>
12. </html>
<%@ page contentType="text/html;charset=GB2312"%>
<%@ include file="checkvalid.jsp" %>
<html>
<head>
<title>~WELCOME TO MY HOMEPAGE~</title>
</head>
<body>
<center>
~WELCOME TO MY HOMEPAGE~
</center>
</body>
</html>java和jsp
这个页面使用<% @ include file="checkvalid.jsp" %>包含了一个jsp页面checkvalid.jsp为了验证输入信息的合法性:
Java代码
1. <%
2. Attribute("login")==null||!Attribute("login").equals("ok")){
3. response.sendRedirect("login.htm");
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论