index.jsp
上传用户:sami52198
上传日期:2010-02-11
资源大小:5174k
文件大小:2k
源码类别:

电子政务应用

开发平台:

MultiPlatform

  1. <%@ page contentType="text/html;charset=GB2312"%>
  2. <html>
  3. <head>
  4. <title>管理员登陆</title>
  5. <META http-equiv=Content-Type content=text/html; charset=gb2312>
  6. <link rel=stylesheet href="css/admin.css" type=text/css>
  7. <script language="JavaScript">
  8. function submitForm()
  9. {
  10.   if(document.form.id.value.length==0){
  11.     alert("用户名不可以为空!");
  12.     document.form.id.focus();
  13.     return;
  14.   }
  15.   else if(document.form.pwd.value.length==0)
  16.   {
  17.     alert("密码不可以为空!");
  18.     document.form.pwd.focus();
  19.     return;
  20.   }
  21.   
  22.   if(document.form.sysid.value=="01")
  23.    {
  24.      document.form.action="news/login.jsp";
  25.    }
  26.    
  27.   if(document.form.sysid.value=="02")
  28.    {
  29.      document.form.action="shop/login.jsp";
  30.    }   
  31.     
  32.   document.form.submit();
  33. }
  34. function onKeydown()
  35. {
  36.   if(event.keyCode==13)
  37.     submitForm();
  38. }
  39. function modpwd(){
  40. var newwin = window.open("modpwd.html","修改密码","toolbar=no,status=no,menubar=no,resizable=no,scrollbars=yes,width=400,height=250,top=100,left=150");
  41. newwin.focus();
  42. }
  43. </script>
  44. </head>
  45. <%
  46.  session.invalidate(); 
  47. %>
  48. <body  topmargin=0 leftmargin=0 onKeydown="onKeydown()">
  49. <br><br><br>
  50. <form method=post name="form">
  51. <table style="width:65%" border=0 cellspacing=1 cellpadding=3  align=center class=tableBorder>
  52.     <tr>
  53.     <th  valign=middle colspan=2 height=25>管理员登陆</th></tr>
  54.     <tr>
  55.     <td valign=middle class=Forumrow width=40%>用户名</td>
  56.     <td valign=middle class=Forumrow><input type="text" name="id" size="30"></td></tr>
  57.     <tr>
  58.     <td valign=middle class=Forumrow>密码</font></td>
  59.     <td valign=middle class=Forumrow><input type="password" name="pwd" size="30"></td></tr>
  60.     <tr>
  61.     <tr>
  62.     <td valign=middle class=Forumrow>进入系统</font></td>
  63.     <td valign=middle class=Forumrow>
  64.     <select name="sysid">
  65.     <option value="01">新闻管理系统</option>   
  66.     <option value="02">购物系统</option>     
  67.     </select>
  68.     </td></tr>
  69.     <tr>    
  70.     <td valign=middle colspan=2 align=center class=forumRow>
  71.   <input type="button" value="  提 交  " name="B1" onclick="submitForm()">
  72. </td></tr></table></form>
  73. </body>
  74. </html>