supplyinfo_operate1.jsp

来自「JSP移动商品管理平台源代码.........」· JSP 代码 · 共 59 行

JSP
59
字号
<%@ page language="java" contentType="text/html; charset=GB2312" errorPage="error.jsp" %>


<%--<%@ page errorPage="/error/error.jsp" %>--%>
<HTML>
<HEAD>
<TITLE>供应商信息维护</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html"; charset="gb2312">
<link href="css/style.css" rel="stylesheet" type="text/css">
</HEAD>
<script language="JavaScript">
function Close(s){
		window.moveTo(-400,-400);
		if (window.opener){
			window.opener.parent.parent.parent.iframe_Main.location.href=window.opener.parent.parent.parent.iframe_Main.location.href;
		}	
		window.alert(s);
		window.close();			
}
</script>
<%
	   int sSupplyNo = new Integer(request.getParameter("tsupplyNo")).intValue();
		String sAction = request.getParameter("TAction");
	
		int i = 0;
		String sSupplyName = request.getParameter("tsupplyName");
		String sTele = request.getParameter("ttele");
		String sAddr = request.getParameter("taddr");
		String sAttPerson = request.getParameter("tattPerson");
		String sAcccount = request.getParameter("tacccount");
		String sBank = request.getParameter("tbank");
	    String sRemark = request.getParameter("tremark");
    
    
    
  
    

%>
<jsp:useBean id="SupplyInfo_maintain" scope="page" class="imis_mate.supplyInfo_maintain" />
<jsp:setProperty name="SupplyInfo_maintain" property="supplyNo" value="<%=sSupplyNo%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="supplyName" value="<%=sSupplyName%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="tele" value="<%=sTele%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="addr" value="<%=sAddr%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="attPerson" value="<%=sAttPerson%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="acccount" value="<%=sAcccount%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="bank" value="<%=sBank%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="remark" value="<%=sRemark%>" />
<jsp:setProperty name="SupplyInfo_maintain" property="action" value="<%=sAction%>" />

<%
	//String result = organ_maintain.GBtoISO(organ_maintain.processthis());
	String result = SupplyInfo_maintain.processthis();
	String sParam = "javascript:Close('"+result+"')";
	
%>
<body background="images/bg_main.png"	onload="<%=sParam%>">
</body>
</html>

⌨️ 快捷键说明

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