⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wizardpage.jspf

📁 这是linux下ssl vpn的实现程序
💻 JSPF
字号:
<%@ page import="com.sslexplorer.install.forms.SelectCertificateSourceForm" %>
<%@ page import="com.sslexplorer.wizard.actions.AbstractWizardAction" %>
<%@ page import="com.sslexplorer.boot.Util" %>
<%@ page import="com.sslexplorer.wizard.AbstractWizardSequence" %>
<%@ page import="com.sslexplorer.security.Constants" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>
<%@ taglib uri="/sslexplorer/taglibs/navigation" prefix="navigation" %>
<%@ taglib uri="/sslexplorer/taglibs/security" prefix="security" %>
			
<% AbstractWizardSequence seq = (AbstractWizardSequence)request.getSession().getAttribute(Constants.WIZARD_SEQUENCE); %>
<explorer:form enctype="<%= seq.getCurrentPageForm().getFormEncoding() %>" focus="<%= seq.getCurrentPageForm().getFocussedField() %>" autocomplete="<%= seq.getCurrentPageForm().getAutocomplete() ? "ON" : "OFF" %>" action="<%= seq.getCurrentPageForm().getFormAction() %>">
	<div id="component_wizardPage">
		<div class="dialog_content">		
			<div id="<%= "wizard_" + seq.getWizardName() %>">
				<html:hidden property="referer"/>
				<html:hidden property="actionTarget"/>
				<html:hidden property="_charset_"/>
				<html:hidden property="gotoStep"/>
				<div id="header">
					<h3><bean:message key="<%= seq.getCurrentPageForm().getResourcePrefix() + ".title" %>" bundle="<%= seq.getCurrentPageForm().getResourceBundle() %>"/></h3>
					<bean:message key="<%= seq.getCurrentPageForm().getResourcePrefix() + ".description" %>" bundle="<%= seq.getCurrentPageForm().getResourceBundle() %>"/>
				</div>
				<div id="<%= "wizardPage_" + seq.getCurrentPageForm().getPageName() %>">					
					<div id="body">
						<bean:define id="wizardPageContent"><%= seq.getCurrentPageForm().getPage() %></bean:define>
						<tiles:insert flush="false" beanName="wizardPageContent"/>
					</div>
				</div>
			</div>
			<div id="footer">
				<logic:equal name="<%= seq.getCurrentPageForm().getPageName() + "Form" %>" property="previousAvailable" value="true">
					<html:button property="previous" styleClass="previous" onclick="<%= seq.getCurrentPageForm().getPreviousOnClick() %>"><bean:message key="wizard.previous" bundle="navigation"/></html:button>
				</logic:equal>
				<logic:equal name="<%= seq.getCurrentPageForm().getPageName() + "Form" %>" property="nextAvailable" value="true">
					<html:button property="next" styleClass="next" onclick="<%= seq.getCurrentPageForm().getNextOnClick() %>"><bean:message key="wizard.next" bundle="navigation"/></html:button>
				</logic:equal>
				<logic:equal name="<%= seq.getCurrentPageForm().getPageName() + "Form" %>" property="finishAvailable" value="true">
					<html:button property="finish" styleClass="finish" onclick="<%= seq.getCurrentPageForm().getFinishOnClick() %>"><bean:message key="wizard.finish" bundle="navigation"/></html:button>
				</logic:equal>&nbsp;
			</div>
		</div>
	</div>	
</explorer:form>

⌨️ 快捷键说明

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