checkcode.jsp
来自「运输模块代码」· JSP 代码 · 共 30 行
JSP
30 行
<%-- Created by IntelliJ IDEA. User: jtgao Date: 2006-5-19 Time: 11:24:30 To change this template use File | Settings | File Templates.//--%><%@page contentType="text/html;charset=GBK"%><%@ include file="/IncludeBeginMD.jsp"%><% boolean isEmpty = true; String sWorksno = DataConvert.toRealString(iPostChange,request.getParameter("Worksno")); String sSql = "select * from ord_item where worksno = '"+sWorksno +"'"; System.out.println("sSql = " + sSql); try{ ASResultSet rs = Sqlca.getASResultSet( sSql ); isEmpty = !rs.next(); } catch (Exception e){ e.printStackTrace(); }%><script language=javascript> //alert(sSql);alert(isEmpty); self.returnValue = "<%=isEmpty%>"; self.close();</script><%@ include file="/IncludeEnd.jsp"%>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?