userwarehouseinfo.jsp
来自「基于J2EE的网络物流系统 用户操作: 1. 录入出库商品信息 2. 查询」· JSP 代码 · 共 40 行
JSP
40 行
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="GB2312"%>
<%@ taglib uri="/WEB-INF/others-tag.tld" prefix="OthersTag"%>
<%@ page import="com.logistic.data.DataConnect"%>
<%request.setCharacterEncoding("gb2312");%>
<%
DataConnect dc=new DataConnect();
String strsql="select * from warehouseinfotable";
int count=0;
count=dc.selectdata(strsql);
if(count<=0){
session.setAttribute("errors","仓库信息为空!");
response.sendRedirect("../../errors/errorpage.jsp");
}
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv='Expires' content='-10'>
<meta http-equiv='Pragma' content='No-cache'>
<meta http-equiv='Cache-Control', 'private'>
<title>仓库信息浏览窗口</title>
<style type="text/css">
<!--
body {
background-color: #168AC2;
}
-->
</style>
<link href="<%=request.getContextPath()%>/cssjs/comcss.css" rel="stylesheet" type="text/css">
</head>
<body>
<div align="center">
<OthersTag:WareHouseUserTag/>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?