快精灵印艺坊 您身边的文印专家
广州名片 深圳名片 会员卡 贵宾卡 印刷 设计教程
产品展示 在线订购 会员中心 产品模板 设计指南 在线编辑
 首页 名片设计   CorelDRAW   Illustrator   AuotoCAD   Painter   其他软件   Photoshop   Fireworks   Flash  

 » 彩色名片
 » PVC卡
 » 彩色磁性卡
 » 彩页/画册
 » 个性印务
 » 彩色不干胶
 » 明信片
   » 明信片
   » 彩色书签
   » 门挂
 » 其他产品与服务
   » 创业锦囊
   » 办公用品
     » 信封、信纸
     » 便签纸、斜面纸砖
     » 无碳复印纸
   » 海报
   » 大篇幅印刷
     » KT板
     » 海报
     » 横幅

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


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

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

 %><html><head>

<title>信息查??系靳</title>

<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>       <div align="center"><img src="images/TITLE.jpg" width="587" height="174"></div>    </td>  </tr></table><div align="center"></div><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%">             <div align="center">    

              <p><font color="#000000"><strong>信 息 列 表</strong></font>               </p>            </div>          </td>        </tr>        <tr>           <td width="81%" align="center" valign="top" height="139">             <div align="center">

              <div align="center">                 <div align="center"><br>                  <br>                  <div align="center">                     <p align="left">                      <%int intPageSize;int intRowCount;//???????甸nt intPageCount;//?????甸nt intPage;//??面???涤tring strPage;//定柳???涤????鬟fpageint i,j;intPageSize=5;//定柳每??锢示5?l????strPage=request.getParameter("page");//取得??前的??瘁if(strPage==null){//判?喑跏柬?面,假如?]有锢示????,就置?榈谝豁?intPage=1;}else{intPage=Integer.parseInt(strPage);//?ⅢtrPage弈化?檎??甸f(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);//取得整?当4媾cintRowCount???抵虚ntPageCount=(intRowCount+intPageSize-1)/intPageSize;//??算出?????胆???????但每??锢示的????-1)/每??锢示的????)if(intPage>intPageCount)intPage=intPageCount;

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

ResultSet rs=ps.executeQuery(query);//?绦畜ql,按照?r殓先後排序锢示i=(intPage-1)*intPageSize;for(j=0;j<i;j++)rs.next();%><%-- 韵置intPage???? --%>   <FORM action=index.jsp method=POST><p align=\\\'center\\\' vAlign=\\\'bottom\\\'>    第<%=intPage%>?? &nbsp;&nbsp;&nbsp;共<%=intPageCount%>??&nbsp;&nbsp;&nbsp;    <%if(intPage<intPageCount){%>    <a href="index.jsp?page=<%=intPage+1%>">下一??</a>&nbsp;&nbsp;&nbsp;    <%}%>    <%if(intPage>1){%>    <a href="index.jsp?page=<%=intPage-1%>">上一??</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    <%}%>     </form>                                        </div>                  <div align="center">                     <center>                      <table border="1" cellspacing="0" width="90%"    bgcolor="#F0F8FF" bordercolorlight="#000000" bordercolordark="#FFFFFF" background="../images/top-linebg.gif">                        <tr>                           <td width="15%" align="center" height="20" bgcolor="#B5D85E"><font color="#000000">ID                             ?? </font></td>                          <td width="45%" align="center" bgcolor="#B5D85E"><font color="#000000">信                             息 名 费</font></td>                          <td width="26%" align="center" bgcolor="#B5D85E"><font color="#000000">上                             蒌 ?r 殓</font></td>                          <td width="15%" align="center" bgcolor="#B5D85E"><font color="#000000">?c                             ?籀lt;/font></td>                        </tr>                          <%if(intRowCount==0){%>    ?Σ黄穑????]有儋料!    <%}else{%>  <%-- 锢示每??的儋料 (根??i的值判?嗝宽?的5?l????) --%> <%  i=0;  while(i<intPageSize && rs.next()){ %>                        <tr>                           <td width="15%" height="23" bgcolor="#FFFFFF">                             <p align="center"><%=rs.getString("article_id")%>                           </td>                          <td width="45%" bgcolor="#FFFFFF">                              <a href="javascript:openwin(<%=rs.getString("article_id")%>)" title="<%=rs.getString("title")%>"><%=rs.getString("title")%></a>                                                                           </td>                          <td width="26%" bgcolor="#FFFFFF">                             <div align="center"><%=rs.getString("date_and_time")%></div>                          </td>                          <td width="15%" bgcolor="#FFFFFF">                             <p align="center"><%=rs.getString("hits")%>                           </td>                        </tr>          <%   i++;//通咿I??圈韵置每??的???郸nbsp;   } %>         <%}%>                      </table>                    </center>                  </div>               <FORM action=index.jsp method=POST><p align=\\\'center\\\' vAlign=\\\'bottom\\\'>    第<%=intPage%>?? &nbsp;&nbsp;&nbsp;共<%=intPageCount%>??&nbsp;&nbsp;&nbsp;    <%if(intPage<intPageCount){%>    <a href="index.jsp?page=<%=intPage+1%>">下一??</a>&nbsp;&nbsp;&nbsp;    <%}%>    <%if(intPage>1){%>    <a href="index.jsp?page=<%=intPage-1%>">上一??</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    <%}%>        <br>到第<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;<a href="manage.jsp">系靳治理</a><%}         else{%>         &nbsp; &nbsp;<a href="login.jsp">登??系靳治理</a><%}%>                         </div>              </div>            </div>          </td>        </tr>      </table>    </td>  </tr></table><%rs.close();

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>




返回类别: 教程
上一教程: 刚运行了 Azureus ,给我的感觉是这界面真不象是Java 写的,发誓看完这套代码!
下一教程: commons-fileupload用户指南(文档翻译)

您可以阅读与"Oracle &amp; JSP 开发的小型信息治理系统 (二) 源代码1"相关的教程:
· Oracle &amp; JSP 开发的小型信息治理系统 (七) 源代码5
· Oracle &amp; JSP 开发的小型信息治理系统 (三) 源代码2
· Oracle &amp; JSP 开发的小型信息治理系统 (五) 源代码4
· Oracle &amp; JSP 开发的小型信息治理系统 (四) 源代码3
· Oracle &amp; JSP 开发的小型信息治理系统 (一) 说明文档
    微笑服务 优质保证 索取样品