Oracle(2)
2008-02-23 09:50:59来源:互联网 阅读 ()
conn.close(); %> <p align="center">Copyright ©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"> <input type="reset" value="重填" name="cmdReset" class="buttonface"> </p> </div></form><div align="center"> <p> </p> <p> </p> <p> </p> <p> </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
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Oracle SQLPlus导出数据到csv文件 2020-05-18
- Oracle用decode函数或CASE-WHEN实现自定义排序 2020-05-18
- MyBatis+Oracle在执行insert时空值报错之从源码寻找解决办法 2020-04-15
- Mybatis+Oracle搭配insert空值报错之myBatis+mysql驱动+orac 2020-04-14
- Oracle之序列 2020-04-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash
