selectuserdatabase.jspf

来自「这是linux下ssl vpn的实现程序」· JSPF 代码 · 共 19 行

JSPF
19
字号
<%@ 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:iterate name="selectUserDatabaseForm" property="authSchemes" id="authScheme"
		type="com.sslexplorer.boot.TypeMetaListItem">
		<tr class="formBlock">
			<td class="value"">
				<html:radio name="selectUserDatabaseForm" property="userDatabase" value="<%= authScheme.getValue() %>"/><span class="valueLabel"><bean:message key="<%= "security.userDatabase.value." + authScheme.getValue() %>" bundle="<%= authScheme.getMessageResourcesKey() %>"/></span>
			</td>
		</tr>
		<tr class="formBlock">
			<td class="label">
				<bean:message key="<%= "security.userDatabase.value." + authScheme.getValue() + ".description" %>" bundle="<%= authScheme.getMessageResourcesKey() %>"/>
			</td>
		</tr>
	</logic:iterate>
</table>

⌨️ 快捷键说明

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