站内搜索: 请输入搜索关键词

当前页面: 开发资料首页JSP 专题Oracle 和 JSP 开发的小型信息管理系统 (二) 源代码1

Oracle 和 JSP 开发的小型信息管理系统 (二) 源代码1

摘要: Oracle 和 JSP 开发的小型信息管理系统 (二) 源代码1
<textarea readonly style="border:none;font-family:Courier New;line-height:150%;width:760px;overflow-y:visible">

**************************************//index .jsp 默认登录,查看信息页面

<%@ include file="articleconn1.jsp"%>
<%

%>

<head>

信息查詢系統

<script>

function openwin(id){ window.open("view.jsp?id="+id,"","height=450,width=550,resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");}

</script>
<link> rel="stylesheet" href="css/style.css">
</head>

<body bgcolor="#FFFFFF" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">
<table width="609" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td>


</td>
</tr>
</table>

<table width="607" cellpadding="0" cellspacing="0" align="center">
<tr>
<td colspan="3" height="117">
<table border="1" width="100%" bordercolorlight="#000000" bordercolordark="#FFFFFF" cellpadding="0" cellspacing="0" align="center">
<tr>
<td height="16" bgcolor="#B5D85E" width="81%">

信 息 列 表



</td>
</tr>
<tr>
<td width="81%" align="center" valign="top" height="139">








<%
int intPageSize;
int intRowCount;//記錄總數
int intPageCount;//總頁數
int intPage;//頁面參數
String strPage;//定義變數用來傳遞page
int i,j;
intPageSize=5;//定義每頁顯示5條記錄
strPage=request.getParameter("page");//取得當前的頁碼
if(strPage==null){//判斷初始頁面,如果沒有顯示記錄,就置為第一頁
intPage=1;
}else{
intPage=Integer.parseInt(strPage);//將strPage轉化為整數
if(intPage<1) intPage=1;
}

String sqlname="select count(article_id) from learning ";

//sqlname="select count(article_id) from learning where title like '%"+keyword+"%' and types like '%"+typename+"%' order by article_id desc";

PreparedStatement ps=conn.prepareStatement(sqlname);
ResultSet rs1=ps.executeQuery();
rs1.next();
intRowCount=rs1.getInt(1);//取得整數保存與intRowCount變數中
intPageCount=(intRowCount+intPageSize-1)/intPageSize;//計算出總頁數(記錄總數+每頁顯示的記錄-1)/每頁顯示的記錄)
if(intPage>intPageCount)
intPage=intPageCount;

String query=" select * from learning order by article_id ";

ResultSet rs=ps.executeQuery(query);//執行sql,按照時間先後排序顯示
i=(intPage-1)*intPageSize;
for(j=0;jrs.next();
%>
<%-- 設置intPage參數 --%>
<form action=index.jsp method=POST>


第<%=intPage%>頁 &nbsp;&nbsp;&nbsp;共<%=intPageCount%>頁&nbsp;&nbsp;&nbsp;
<%if(intPage ">下一頁&nbsp;&nbsp;&nbsp;
<%}%>
<%if(intPage>1){%>
">上一頁&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<%}%>
</form>




<table border="1" cellspacing="0" width="90%"

<tr>
<td width="15%" align="center" height="20" bgcolor="#B5D85E">ID
</td>
<td width="45%" align="center" bgcolor="#B5D85E">
息 名 稱
</td>
<td width="26%" align="center" bgcolor="#B5D85E">
載 時 間
</td>
<td width="15%" align="center" bgcolor="#B5D85E">
</td>
</tr>
<%if(intRowCount==0){%>
對不起,還沒有資料!
<%}else{%>
<%-- 顯示每頁的資料 (根據i的值判斷每頁的5條記錄) --%>
<%
i=0;
while(i %>
<tr>
<td width="15%" height="23" bgcolor="#FFFFFF">

<%=rs.getString("article_id")%>
</td>
<td width="45%" bgcolor="#FFFFFF">
)" title="<%=rs.getString("title")%>"><%=rs.getString("title")%>

</td>
<td width="26%" bgcolor="#FFFFFF">

<%=rs.getString("date_and_time")%>

</td>
<td width="15%" bgcolor="#FFFFFF">

<%=rs.getString("hits")%>
</td>
</tr>
<%
i++;//通過I迴圈設置每頁的頁數
}
%>


<%}%>
</table>



<form action=index.jsp method=POST>


第<%=intPage%>頁 &nbsp;&nbsp;&nbsp;共<%=intPageCount%>頁&nbsp;&nbsp;&nbsp;
<%if(intPage ">下一頁&nbsp;&nbsp;&nbsp;
<%}%>
<%if(intPage>1){%>
">上一頁&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<%}%>

到第<input type="text" name="page" size="5" value="1"/>頁
<input type="submit" value="確定" class="buttonface">
</form>
<%

String userName=(String)session.getAttribute("admin");
if(userName==null){userName="";}
if(userName.equals("admin")){

%>
&nbsp; &nbsp;系統管理<%}
else{%>
&nbsp; &nbsp;登錄系統管理<%}%>




</td>
</tr>
</table>
</td>
</tr>
</table>
<%rs.close();

conn.close();
%>

Copyright &copy;moonsoft 2004


</body>

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

<%@ page contentType="text/html;charset=big5"%>
<head>

信息查詢系統

<link> rel="stylesheet" href="css/style.css">
</head>

<body bgcolor="#FFFFFF">



管理系統


<form method="post" action="chklogin.jsp">

用戶名稱
<input class=TextBorder maxlength=25


管理密碼
<input class=TextBorder maxlength=25



<input type="submit" value="确定" name="cmdOk" class="buttonface">
&nbsp;
<input type="reset" value="重填" name="cmdReset" class="buttonface">
&nbsp;



</form>

&nbsp;


&nbsp;


&nbsp;


&nbsp;



</body>

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

<%@ page contentType="text/html;charset=gb2312"%>
<%@ page import="java.sql.*"%>

<head>

chklogin
</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>


</textarea>

↑返回目录
前一篇: Oracle 和 JSP 开发的小型信息管理系统 (三) 源代码2
后一篇: Oracle 和 JSP 开发的小型信息管理系统 (一) 说明文档