⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userbrowse.jsp

📁 网上购物系统 主要实现订单查询 订单各种操作 等
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ page import="eshopsys.user.biz.*" %>
<%@ page import="eshopsys.user.model.*" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
request.setCharacterEncoding("gb2312");
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'userBrowse.jsp' starting page</title>
    
	<meta http-equiv="pragma" content="no-cache">
	<meta http-equiv="cache-control" content="no-cache">
	<meta http-equiv="expires" content="0">    
	<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
	<meta http-equiv="description" content="This is my page">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

    <style type="text/css">
<!--
.STYLE1 {font-size: 12px}
-->
    </style>
</head>
  <%
  UserBiz userbiz=new UserBiz();
  UserEntity[] users=(UserEntity[])userbiz.findByQueryString("select * from tbl_user");
  userbiz.CloseConnection();
  %>
  <body>
  <table border="1" bgcolor="#999999" bordercolor="#997722">
  <tr>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>客户编号</strong></span></td>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>客户帐号</strong></span></td>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>客户姓名</strong></span></td>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>所在城市</strong></span></td>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>客户地址</strong></span></td>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>客户邮编</strong></span></td>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>客户电话</strong></span></td>
   <td bgcolor="#99CCFF"><span class="STYLE1"><strong>客户邮件</strong></span></td>
   </tr> 
  <%
  if(users!=null)
  for(int i=0;i<users.length;i++)
  {
   %>
   <tr>
   <td bgcolor="#CCFFFF"><div align="center"><span class="STYLE1"><%=users[i].getUserId() %></span></div></td>
   <td bgcolor="#CCFFFF"><span class="STYLE1"><%=users[i].getUserAccount() %></span></td>
   <td bgcolor="#CCFFFF"><span class="STYLE1"><%=users[i].getUserName() %></span></td>
   <td bgcolor="#CCFFFF"><span class="STYLE1"><%=users[i].getUserCity() %></span></td>
   <td bgcolor="#CCFFFF"><span class="STYLE1"><%=users[i].getUserAddress() %></span></td>
   <td bgcolor="#CCFFFF"><span class="STYLE1"><%=users[i].getUserZipCode() %></span></td>
   <td bgcolor="#CCFFFF"><span class="STYLE1"><%=users[i].getUserTelephone() %></span></td>
   <td bgcolor="#CCFFFF"><span class="STYLE1"><%=users[i].getUserEmail() %></span></td>
   </tr>   
   <%} %>
  </table>
  </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -