JAVA日报

2021/6/20 9:56:50

本文主要是介绍JAVA日报,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

用户管理系统(登录操作)

用户输入用户名密码后从数据库查询信息 比对用户名密码后允许登录

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<%
Object message = request.getAttribute("message");
if(message!=null && !"".equals(message)){
%>
<script type="text/javascript">
alert("<%=request.getAttribute("message")%>");
</script>
<%if(message.equals("密码正确")){ %>
<%
request.getRequestDispatcher("user.jsp").forward(request,response);}%>
<%} %>
<div style="position:absolute;width:100%;height:100%;background:#7FDBFF;">
<div style="position:absolute;text-align:center;color:red;width:100%;height:20%;top:0;font-size:100px;">
用户登录
</div>
<div style="position:absolute;width:60%;height:40%;top:30%;left:20%;">
<form action="UserServlet?method=enter" method="post">
<table>
<tr>
<td>role:</td>
<td><input type="text" name="role" id="role"style="width:400px;height:30px"><br></td>
</tr>
<tr>
<td>id:</td>
<td><input type="text" name="UserID" id="UserID"style="width:400px;height:30px"><br></td>
</tr>
<tr>
<td>密码:</td>
<td><input type="password" name="Password" id="password"style="width:400px;height:30px"><br></td>
</tr>
<tr>
<td><button type="submit" onclick="return check()">登录</button></td>
<td><a href="userZ.jsp">注册</a></td>
</tr>
</table>
</form>
</div>
</div>
<script type="text/javascript">
function check() //封装一个<body>中做成点击事件的函数
{
if(document.getElementById('UserID').value==''||document.getElementById('role').value==''||document.getElementById('Password').value=='') {
alert('有为空信息!');
return false;
}else {return true;}
}
</script>
</body>
</html>



这篇关于JAVA日报的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程