管理员JSP登录界面adm_login.jsp
<!--<meta http-equiv="musiclist-Type" musiclist="text/html; charset=gb2312">-->
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page session="true" %>
<jsp:useBean id="alogin" scope="page" class="cdshop.run.login" />
<%
String mesg = "";
if( request.getParameter("username")!=null && !request.getParameter("username").equals("")){
String username =request.getParameter("username");
String passwd = request.getParameter("passwd");
username = new String(username.getBytes("ISO8859-1"));
passwd = new String(passwd.getBytes("ISO8859-1"));
alogin.setUsername(username);
alogin.setPasswd(passwd);
alogin.setIsadmin(true);
if (alogin.excute()){
session.setAttribute("admin","admin");
response.sendRedirect("adm_user.jsp");
}else {
mesg = "登录出错!" ;
}
}
%>
<script language="javascript">
function checkform() {
if (document.form1.username.value=="" || document.form1.passwd.value==""){
alert("用户名或密码为空!");
return false;
}
return true;
}
</script>
<%@include file="../inc/adm_head.inc"%>
<tr>
<td> </td>
</tr>
<tr>
<div align="center" bgcolor="#E4EDFB">
<table width="778" border="0" cellspacing="0" cellpadding="0" bgcolor="#E4EDFB" align="center">
<tr>
<td align="center">
<form name="form1" method="post" action="adm_login.jsp">
<table width="360" border="0" cellspacing="2" cellpadding="2" bgcolor="#E4EDFB" bordercolor="#66CCFF" style="font-size:9pt">
<tr align="center">
<td colspan="2">
<h3><br>
<font color="#FF0000">在线CD销售管理系统</font></h3>
<p> <% if (!mesg.equals("")){
out.println(mesg);}%></p>
</td>
</tr>
<tr>
<td align="right" width="150">管理员:</td>
<td>
<input type="text" name="username" size="12" maxlength="20">
</td>
</tr>
<tr>
<td align="right" width="150">管理员密码:</td>
<td>
<input type="password" name="passwd" size="12" maxlength="20">
</td>
</tr>
<tr align="center">
<td colspan="2">
<input type="submit" name="Submit" value="登录" onclick="javascript:return(checkform());">
<input type="reset" name="Submit2" value="取消">
</td>
</tr>
<tr align="center">
<td colspan="2">测试用户:admin 密码:admin</td>
</tr>
<tr align="center">
<td colspan="2"><A HREF="../index.jsp">返回首页</A></td>
</tr>
</table>
</form>
<p> </p>
</td>
</tr>
</table>
</div>
</tr>
<%@include file="../inc/adm_tail.inc"%>若要更多,请联系站长QQ752018766,谢谢支持