checkcode.jsp

来自「运输模块代码」· JSP 代码 · 共 34 行

JSP
34
字号
<%/* Copyright 2006-2009 Hexiesoft, Inc. All Rights Reserved. * This software is the proprietary information of Hexiesoft, Inc. * Use is subject to license terms. * Author:lijun 2006-5-15 * Tester: * * Content: * Input Param: * * * * Output param: * */%><%@page contentType="text/html;charset=GBK"%><%@ include file="/IncludeBeginMD.jsp"%><%	boolean isEmpty = true;	String sCode = DataConvert.toRealString(iPostChange,(String)request.getParameter("Code"));	ASResultSet rs = Sqlca.getASResultSet("select Blno from Shipment where Blno = '"+sCode+"'");	if(rs.next()){		isEmpty = false;	}else{		isEmpty = true;	}%><script language=javascript>	self.returnValue = "<%=isEmpty%>";	self.close();</script><%@ include file="/IncludeEnd.jsp"%></html>

⌨️ 快捷键说明

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