怎样控制jsp代码中嵌入JAVA代码执行 怎样控制jsp代码中嵌入JAVA代码执行
<!--脚本--><scriptlanguage="javascript">functionnotnull(loginform){alert("来了");varusern...
<!-- 脚本 -->
<script language="javascript">
function notnull(loginform){
alert("来了");
var username=document.loginform.username.value
var password=document.loginform.password.value;
if(username==""){
window.alert("请输入用户名!");
document.loginform.username.focus();
event.returnValue=false;
return false;
}
if(password==""){
window.alert("请输入密码!");
document.loginform.password.focus();
event.returnValue=false;
return false;
}
}
//session.setAttribute("username",document.loginform.username.value);
//session.setAttribute("password",document.loginform.password.value);
//接下来检测用户是否存在,true就跳转到会员中心页面,false就让用户注册---------》
<%
String username=request.getParameter("username");
String password=request.getParameter("password");
System.out.println("用户名:"+username);
System.out.println("密码:"+password);
boolean ishave;
BmDao dao=new BmDaoImpl();
ishave=dao.identity(username,password);
if(ishave==true){
response.sendRedirect("memeber.jsp");
}else if(ishave==false){
response.sendRedirect("noregister.jsp");
}
%>
//------------------------------------------------------------------------》
}
</script>
</head>
<body background="/bookmark/images/snowy.jpg"><br>
<h1>PHPbookmark</h1> <br>
<hr color="white" width="30%" align="left">
<h4>*把您的书签存在我们这里!</h4>
<h4>*看看其他的用户在看什么?</h4>
<h4>*把您的爱好和其他人分享!</h4>
<br>
<h4>还不是会员?现在就注册吧!</h4><br>
<form name="loginform" id="loginform" method="post" action="" onsubmit="return notnull(this)">
<table width="20%" cellpadding="4" background="/bookmark/images/four.jpg">
<tr>
<td colspan="2"><center><font color="blue">会员登录</font></center></td>
</tr>
<tr>
<td colspan="2">用户名<input type="text" name="username"></td>
</tr>
<tr>
<td>密 码<input type="text" name="password"></td>
</tr>
<tr>
<td colspan=""2><center><input type="submit" value="登录"><br> <a href="forgotpasswdform.jsp">忘记密码了?</a></center></td>
<td><input type="hidden" name="loginpage" value="loginpage"></td>
</tr>
</table>
</form>
<hr color="white" width="30%" align="left">
版权所有者© 08级-JAVA-帅磊
</body> 展开
<script language="javascript">
function notnull(loginform){
alert("来了");
var username=document.loginform.username.value
var password=document.loginform.password.value;
if(username==""){
window.alert("请输入用户名!");
document.loginform.username.focus();
event.returnValue=false;
return false;
}
if(password==""){
window.alert("请输入密码!");
document.loginform.password.focus();
event.returnValue=false;
return false;
}
}
//session.setAttribute("username",document.loginform.username.value);
//session.setAttribute("password",document.loginform.password.value);
//接下来检测用户是否存在,true就跳转到会员中心页面,false就让用户注册---------》
<%
String username=request.getParameter("username");
String password=request.getParameter("password");
System.out.println("用户名:"+username);
System.out.println("密码:"+password);
boolean ishave;
BmDao dao=new BmDaoImpl();
ishave=dao.identity(username,password);
if(ishave==true){
response.sendRedirect("memeber.jsp");
}else if(ishave==false){
response.sendRedirect("noregister.jsp");
}
%>
//------------------------------------------------------------------------》
}
</script>
</head>
<body background="/bookmark/images/snowy.jpg"><br>
<h1>PHPbookmark</h1> <br>
<hr color="white" width="30%" align="left">
<h4>*把您的书签存在我们这里!</h4>
<h4>*看看其他的用户在看什么?</h4>
<h4>*把您的爱好和其他人分享!</h4>
<br>
<h4>还不是会员?现在就注册吧!</h4><br>
<form name="loginform" id="loginform" method="post" action="" onsubmit="return notnull(this)">
<table width="20%" cellpadding="4" background="/bookmark/images/four.jpg">
<tr>
<td colspan="2"><center><font color="blue">会员登录</font></center></td>
</tr>
<tr>
<td colspan="2">用户名<input type="text" name="username"></td>
</tr>
<tr>
<td>密 码<input type="text" name="password"></td>
</tr>
<tr>
<td colspan=""2><center><input type="submit" value="登录"><br> <a href="forgotpasswdform.jsp">忘记密码了?</a></center></td>
<td><input type="hidden" name="loginpage" value="loginpage"></td>
</tr>
</table>
</form>
<hr color="white" width="30%" align="left">
版权所有者© 08级-JAVA-帅磊
</body> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询