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

📄 90e4f597051d001e17369707aeeca968

📁 网上购物系统
💻
字号:
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
<%@ page import="com.cric.onlineshopclothes.dao.ProductDAO" %>
<%@ page import="com.cric.onlineshopclothes.javabean.Category" %>
<%@ page import="java.util.List" %>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";

ProductDAO dao=new ProductDAO();
List list=(List)request.getAttribute("list");
if(list==null){
	list=dao.getCategoryByUsername("");
}
%>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <base href="<%=basePath%>">
    
    <title>My JSP 'index.jsp' starting page</title>
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
	<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">
	-->
  </head>
  
  <body>
    <body>
        <form name="form1" method="post" action="UserServlet">

      <table width="100%" border="0" cellspacing="0" cellpadding="0">
	   <tr>
          <td bgcolor="#00FF00"><div align="center"><strong>商品类别查询</strong></div></td>
        </tr>
        <tr>
          <td>类别或类别名:<input name="categoryname" type="text" size="30">          
	      <input type="submit" name="Submit" value="查询">         
		  </td>
        </tr>
        <tr>
          <td>&nbsp;</td>
        </tr>
       
        <tr>
          <td><table width="100%" border="0" cellspacing="0" cellpadding="0" id="border">
            <tr>
              <td width="23%">编号</td>
              <td width="32%">类别名</td>
              <td width="23%">状态</td>
              <td width="22%">更新时间</td>
            </tr>
          
          
          
          </table></td>
        </tr>
        <tr>
          <td>&nbsp;</td>
        </tr>
        <tr>
          <td>&nbsp;</td>
        </tr>
      </table>
     </form>
    
  </body>
</html> 

⌨️ 快捷键说明

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