formModeComTab.jsp
1.03 KB
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ page import="weaver.general.Util" %>
<%@ include file="/systeminfo/init_wev8.jsp" %>
<html>
<head>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<script type="text/javascript" src="/wui/common/jquery/jquery.min_wev8.js"></script>
<LINK href="/css/Weaver_wev8.css" type=text/css rel=STYLESHEET>
</head>
<script type="text/javascript">
$("#rightBox", window.parent.document).hide();
</script>
<body>
<%
int modeId = Util.getIntValue(request.getParameter("modeId"),0);
int formId = Util.getIntValue(request.getParameter("formId"),0);
String billid = Util.null2String(request.getParameter("billid"));
%>
<jsp:include page="/formmode/view/formModeCom.jsp" flush="true">
<jsp:param name="modeId" value="<%=modeId%>" />
<jsp:param name="formId" value="<%=formId%>" />
<jsp:param name="billId" value="<%=billid%>" />
</jsp:include>
</body>
</html>