Oracle(2)

2008-02-23 09:50:59来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折



conn.close(); %> <p align="center">Copyright &copy;moonsoft 2004</p></body></html>



****************************************//login.jsp 登录页面

<%@ page contentType="text/html;charset=big5"%> <head><meta http-equiv="Content-Type" content="text/html; charset=big5"><title>信息查詢系統</title><meta name="GENERATOR" content="Microsoft FrontPage 4.0"><link rel="stylesheet" href="css/style.css"></head> <body bgcolor="#FFFFFF"><div align="center"><br> <font color="#000000">管理系統</font> <br></div> <form method="post" action="chklogin.jsp"> <div align="center"> <p> 用戶名稱 <input class=TextBorder maxlength=25 name=username size=13 value=""> </p> <p> 管理密碼 <input class=TextBorder maxlength=25 name=password size=13 type="password" value=""> </p> <p> <input type="submit" value="确定" name="cmdOk" class="buttonface"> &nbsp; <input type="reset" value="重填" name="cmdReset" class="buttonface"> &nbsp; </p> </div></form><div align="center"> <p>&nbsp;</p> <p>&nbsp;</p> <p>&nbsp;</p> <p>&nbsp;</p></div></body>



************************//chklogin验证登录页面,如果正确,sendRedirect 到manage.jsp

<%@ page contentType="text/html;charset=gb2312"%><%@ page import="Java.sql.*"%><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=big5"> <title>chklogin</title> </head> <%!String userName, password, adminvalue;%> <% adminvalue="admin"; request.setCharacterEncoding("big5"); userName=request.getParameter("username").trim(); password=request.getParameter("password").trim(); if(userName==null) {response.sendRedirect("index.jsp");} if(password==null) {response.sendRedirect("index.jsp");} if(userName.equals(adminvalue)&&password.equals(adminvalue)) { /*Cookie theadminok=new Cookie("adminok", "true"); response.addCookie(theadminok); response.sendRedirect("manage.jsp");*/ HttpSession se=request.getSession(); se.setAttribute("admin",userName); response.sendRedirect("manage.jsp"); } else{response.sendRedirect("index.jsp");} %> <body> </body></html>

上一篇: Oracle & JSP 开发的小型信息管理系统 (三) 源代码2
下一篇: Oracle & JSP 开发的小型信息管理系统 (四) 源代码3

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Weblogic 81 CA配置以及单向SSL配置

下一篇:原来Eclipse3.0.1中的jboss32x.server文件不匹配JBoss3.2.6!郁