java web项目实现一个用户信息管理的应用系统
<title>用户信息管理系统</title></head><body><formmethod="POST"name="UserLogin"onsubmit="retur...
<title>用户信息管理系统</title>
</head>
<body>
<form method="POST" name="UserLogin" onsubmit="return checkInfo();">
<table width="43.3%" align="center" border="0" background="image.jpg">
<tr height="71.5" align="center">
<td colspan="2"><h2>系统登录</h2></td>
</tr>
<tr height="30">
<td width="20%" style="padding-left:30px";>用户ID:</td>
<td><input type="text" name="id" id="id" value="" size="12" ></input></td>
</tr>
<tr height="30">
<td style="padding-left:30px";>密 码:</td>
<td><input type="password" name="passWord" id="passWord" value="" size="12" ></input></td>
</tr>
<tr height="30">
<td style="padding-left:30px";>验证码:</td>
<td><input type="text" name="randText" id="randText" value="" size="12" ></input>
<img alt="" src="code.jsp" id="randImag"><a href="javascript:loadRand();">刷新</a></td>
</tr>
<tr height="30">
<td colspan="2" align="center">
<input type="submit" name="submit" id="submit" value="登录" class="buttonx" ></input>
<input type="reset" name="reset" id="reset" value="清空" class="buttonx"></input>
</td>
</tr>
</table>
</form>
</body>
<script type="text/javascript">
function loadRand(){
document.getElementById("randImag").src="code.jsp?r="+ Math.random();
}
function checkInfo(){
var count = 0;
var id =document.all.id.value;
var passWord = document.getElementById("passWord").value;
var randText = document.all.randText.value;
if(id==""){
alert("请输入用户名!");
document.all.id.focus();
return false;
}
if(passWord==""){
alert("请输入密码!");
document.all.passWord.focus();
return false;
}
if(randText==""){
alert("请输入验证码!");
document.all.randText.focus();
return false;
}
// if(randText!=seesion1.getAttribute("randImage")){
// alert("验证码错误!");
// }
document.all.UserLogin.action="do?module=login_in&action=loginSevlet&method=checkUserInfo";
}
</script>
</html>
这是登录系统jsp页面,怎么在界面输入用户名密码之后,我能根据数据库判断用户是否存在,密码是否正确,正确就跳转到用户列表页面,求指导 展开
</head>
<body>
<form method="POST" name="UserLogin" onsubmit="return checkInfo();">
<table width="43.3%" align="center" border="0" background="image.jpg">
<tr height="71.5" align="center">
<td colspan="2"><h2>系统登录</h2></td>
</tr>
<tr height="30">
<td width="20%" style="padding-left:30px";>用户ID:</td>
<td><input type="text" name="id" id="id" value="" size="12" ></input></td>
</tr>
<tr height="30">
<td style="padding-left:30px";>密 码:</td>
<td><input type="password" name="passWord" id="passWord" value="" size="12" ></input></td>
</tr>
<tr height="30">
<td style="padding-left:30px";>验证码:</td>
<td><input type="text" name="randText" id="randText" value="" size="12" ></input>
<img alt="" src="code.jsp" id="randImag"><a href="javascript:loadRand();">刷新</a></td>
</tr>
<tr height="30">
<td colspan="2" align="center">
<input type="submit" name="submit" id="submit" value="登录" class="buttonx" ></input>
<input type="reset" name="reset" id="reset" value="清空" class="buttonx"></input>
</td>
</tr>
</table>
</form>
</body>
<script type="text/javascript">
function loadRand(){
document.getElementById("randImag").src="code.jsp?r="+ Math.random();
}
function checkInfo(){
var count = 0;
var id =document.all.id.value;
var passWord = document.getElementById("passWord").value;
var randText = document.all.randText.value;
if(id==""){
alert("请输入用户名!");
document.all.id.focus();
return false;
}
if(passWord==""){
alert("请输入密码!");
document.all.passWord.focus();
return false;
}
if(randText==""){
alert("请输入验证码!");
document.all.randText.focus();
return false;
}
// if(randText!=seesion1.getAttribute("randImage")){
// alert("验证码错误!");
// }
document.all.UserLogin.action="do?module=login_in&action=loginSevlet&method=checkUserInfo";
}
</script>
</html>
这是登录系统jsp页面,怎么在界面输入用户名密码之后,我能根据数据库判断用户是否存在,密码是否正确,正确就跳转到用户列表页面,求指导 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询