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

📄 selectcertificatesource.jspf

📁 这是linux下ssl vpn的实现程序
💻 JSPF
字号:
<%@ page import="com.sslexplorer.install.forms.SelectCertificateSourceForm" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>

<table width="100%" cellpadding="0" cellspacing="0" border="0">
	<logic:equal name="selectCertificateSourceForm" property="certificatesAvailable" value="true">
		<tr class="formBlock">
			<td class="value">
				<html:radio name="selectCertificateSourceForm" property="certificateSource" value="<%= SelectCertificateSourceForm.USE_CURRENT_CERTIFICATE %>"/><span class="valueLabel"><bean:message key="installation.selectCertificateSource.useCurrentCertificate.title" bundle="install"/></span>
			</td>
		</tr>
		<tr class="formBlock">
			<td class="label">
				<bean:message key="installation.selectCertificateSource.useCurrentCertificate.description" bundle="install"/>
			</td>
		</tr>
	</logic:equal>
	<tr class="formBlock">
		<td class="value"">
			<html:radio name="selectCertificateSourceForm" property="certificateSource" value="<%= SelectCertificateSourceForm.CREATE_NEW_CERTIFICATE %>"/><span class="valueLabel"><bean:message key="installation.selectCertificateSource.createNewCertificate.title" bundle="install"/></span>
		</td>
	</tr>
	<tr class="formBlock">
		<td class="label">
			<bean:message key="installation.selectCertificateSource.createNewCertificate.description" bundle="install"/>
		</td>
	</tr>
	<tr class="formBlock">
		<td class="value">
			<html:radio name="selectCertificateSourceForm" property="certificateSource" value="<%= SelectCertificateSourceForm.IMPORT_EXISTING_CERTIFICATE %>"/><span class="valueLabel"><bean:message key="installation.selectCertificateSource.importExistingCertificate.title" bundle="install"/></span>
		</td>
	</tr>
	<tr class="formBlock">
		<td class="label">
			<bean:message key="installation.selectCertificateSource.importExistingCertificate.description" bundle="install"/>
		</td>
	</tr>
</table>

⌨️ 快捷键说明

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