apzl_leasing/WebContent/Common/ToolsB/WorkTipTabsManage.jsp
2018-06-03 22:26:41 +08:00

22 lines
965 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ page contentType="text/html; charset=GBK"%><%@ include file="/IncludeBeginMDAJAX.jsp"%><%
/*
Content: 工作台用户自定义TAB与数据库交互桥接页面由于直接使用RunMethod时参数传递会有问题
*/
String operate = CurPage.getParameter("Operate");
String userid = CurPage.getParameter("UserID");
String tabid = CurPage.getParameter("TabID");
String tabname = CurPage.getParameter("TabName");
String script = CurPage.getParameter("Script");
String cache = CurPage.getParameter("Cache");
String close = CurPage.getParameter("Close");
com.amarsoft.app.util.WorkTipTabsManage wttm = new com.amarsoft.app.util.WorkTipTabsManage();
wttm.setAttribute("Operate",operate);
wttm.setAttribute("UserID",userid);
wttm.setAttribute("TabID",tabid);
wttm.setAttribute("TabName",tabname);
wttm.setAttribute("Script",script);
wttm.setAttribute("Cache",cache);
wttm.setAttribute("Close",close);
out.println(wttm.run(Sqlca));
%><%@ include file="/IncludeEndAJAX.jsp"%>