demo15.jsp

来自「cms是开源的框架」· JSP 代码 · 共 24 行

JSP
24
字号
<%@ page 
	buffer="none" 
	import="org.opencms.workplace.demos.list.*" %>
<%	    	
	// initialize the 1st list dialog
	CmsListDemo15a wp1 = new CmsListDemo15a(pageContext, request, response);
	// perform the list actions 
	wp1.displayDialog(true);
	if (wp1.isForwarded()) {
		return;
	}
	// initialize the 2nd list dialog
	CmsListDemo15b wp2 = new CmsListDemo15b(wp1.getJsp());
	// perform the list actions 
	wp2.displayDialog(true);
	if (wp2.isForwarded()) {
		return;
	}
	// write the content of 1st dialog
	wp1.writeDialog();
	// write the content of 2nd dialog
	wp2.writeDialog();
%>

⌨️ 快捷键说明

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