You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
FZ/lis-module-grp-quotation-web/src/main/webapp/g_quot/LSQuotQueryCustomerMain.jsp

60 lines
2.4 KiB

<%
/***************************************************************
* <p>ProName:LSQuotQueryCustomerMain.jsp</p>
* <p>Title:准客户名查询中转页</p>
* <p>Description:准客户名查询中转页</p>
* <p>Copyright:Copyright (c) 2012</p>
* <p>Company:Sinosoft</p>
* @author : 张成
* @version : 8.0
* @date : 2014-04-24
****************************************************************/
%>
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
<%@include file="../common/jsp/UsrCheck.jsp"%>
<%@page import="com.sinosoft.utility.XssUtil"%>
<html>
<head>
<%--<title>准客户名称查询</title>--%><title>LIS</title>
<script language="javascript">
var intPageWidth = screen.availWidth;
var intPageHeight = screen.availHeight;
window.resizeTo(intPageWidth,intPageHeight);
window.focus();
</script>
</head>
<frameset name="fraMain" rows="0,0,0,*" frameborder="no" border="1" framespacing="0" cols="*">
<%--标题与状态区域--%>
<%--保存客户端变量区域,该区域必须有--%>
<frame name="VD" src="../common/cvar/CVarData.html">
<%--保存客户端变量和WebServer实现交互的区域,该区域必须有--%>
<frame name="EX" src="../common/cvar/CExec.jsp">
<frame name="fraTitle" scrolling="no" noresize src="about:blank">
<frameset name="fraSet" cols="0%,*,0%" frameborder="no" border="1" framespacing="0" rows="*">
<%--菜单区域--%>
<frame name="fraMenu" scrolling="yes" noresize src="about:blank">
<%--交互区域--%>
<%
String tSelNo = XssUtil.escapeJavaScript(request.getParameter("SelNo"));
String tMark = XssUtil.escapeJavaScript(request.getParameter("Mark"));
String tPreCustomerNo = XssUtil.escapeJavaScript(request.getParameter("PreCustomerNo"));
String tPreCustomerName = new String( XssUtil.escapeJavaScript(request.getParameter("PreCustomerName")).getBytes("ISO8859_1"),"UTF-8");
String tQuotNo = XssUtil.escapeJavaScript(request.getParameter("QuotNo"));
String tSrc = "";
tSrc = "./LSQuotQueryCustomerInput.jsp";
tSrc += "?SelNo="+ tSelNo+"&Mark="+tMark +"&PreCustomerNo="+tPreCustomerNo +"&PreCustomerName="+tPreCustomerName +"&QuotNo="+tQuotNo;
%>
<frame id="fraInterface" name="fraInterface" scrolling="auto" src="<%=tSrc%>">
<%--下一步页面区域--%>
<frame id="fraNext" name="fraNext" scrolling="auto" src="about:blank">
</frameset>
</frameset>
<noframes>
<body bgcolor="#ffffff">
</body>
</noframes>
</html>