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

📄 goodtypedeletelist.jsp

📁 网上购物系统
💻 JSP
字号:
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@ page import="eshopsys.goodtype.biz.*" %>
<%@ page import="eshopsys.goodtype.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>商品</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 {color: #FFFFFF}
body {
	background-color: #999999;
}
.STYLE2 {color: #009933}
.STYLE3 {
	color: #ff0000;
	font-size: 24px;
	font-family: "幼圆";
	font-weight: bold;
}
-->
    </style>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head>
 
  <body>
  <div align="center">
  <font color="#ff0000"><span class="STYLE3">商品类别信息删除</span></font>
  <table width="464" height="40" border="1" align="center" cellpadding="0" cellspacing="0">
  <tr>
    <td width="46" bgcolor="#333333"><div align="center" class="STYLE1">编号</div></td>
    <td width="124" bgcolor="#333333"><div align="center" class="STYLE1">类别</div></td>
    <td width="124" bgcolor="#333333"><div align="center" class="STYLE1">修改</div></td>
    </tr>
   <%
     GoodTypeEntity[] goodtypes=(GoodTypeEntity[])new GoodTypeBiz().findByQueryString("select * from tbl_goodtype");
    for(int i=0;i<goodtypes.length;i++)
    {%>
    <tr>
    <td height="20"><div align="center" class="STYLE2"><%=goodtypes[i].getGoodTypeId()%></div></td>
    <td><div align="center" class="STYLE2"><%=goodtypes[i].getGoodType()%></div></td>
    <td><div align="center" class="STYLE2"><a href='<%="SysManager/GoodType/goodtypeDeleteConfirm.jsp?goodtypeid="+goodtypes[i].getGoodTypeId()%>'>删除</a></div></td>
    </tr>
    <%}
   %>
  </table>
  <hr>
  <a href="SysManager/GoodType/goodtypeDeleteList.jsp">刷新...</a> 
  </div>
  </body>
</html>

⌨️ 快捷键说明

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