?? adminstockoutinfo.jsp
字號(hào):
<%@ page language="java" contentType="text/html; charset=gb2312" pageEncoding="GB2312"%>
<%@ taglib uri="/WEB-INF/stockoutinfo-tag.tld" prefix="StockOutInfo"%>
<%@ page import="com.logistic.data.DataConnect"%>
<%@ page import="com.logistic.business.StockOutManager"%>
<%request.setCharacterEncoding("gb2312");%>
<%
DataConnect dc=new DataConnect();
String strsql="select * from stockoutinfotable";
int count=0;
count=dc.selectdata(strsql);
if(count<=0){
session.setAttribute("errors","出庫(kù)單數(shù)據(jù)為空!");
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>出庫(kù)單信息瀏覽窗口</title>
<style type="text/css">
<!--
body {
background-color: #168AC2;
}
-->
</style>
<link href="<%=request.getContextPath()%>/cssjs/comcss.css" rel="stylesheet" type="text/css">
</head>
<%
String stockoutid=(String)request.getParameter("stockoutid");
int flag=0;
if(stockoutid!=null){
StockOutManager som=new StockOutManager();
flag=som.DelStockOut(stockoutid);
if(flag>0){
%>
<script language="javascript">
alert("該出庫(kù)單信息刪除成功!");
location.href="<%=request.getContextPath()%>/viewpage/showpage/adminstockoutinfo.jsp";
</script>
<%
}
}
%>
<body>
<div align="center">
<StockOutInfo:StockOutInfoAdminTag/>
</div>
</body>
</html>
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -