selectpropertyprofilecontent.jspf

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

JSPF
53
字号
<%@ page import="com.sslexplorer.core.forms.CoreForm" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>

<div id="page_select_property_profile">
	<explorer:form styleClass="dialog_form" method="post" action="/selectPropertyProfile.do">
		<html:hidden property="_charset_"/> 
		<html:hidden property="referer"/>
		<div class="dialog_content">
			<table class="dialog_form_table" align="center" cellpadding="0" cellspacing="0" border="0">
				<tbody>
					<tr class="formCombo">
						<td class="label">
							<bean:message key="selectPropertyProfile.profile.label" bundle="navigation" /> 
						</td>
						<td class="value">
							<html:select property="selectedPropertyProfile">
								<html:optionsCollection value="resourceId" label="label" property="propertyProfiles" />
							</html:select>
						</td>
					</tr>
					<tr class="formCheckbox">
						<td colspan="2" class="value">
							<bean:message key="selectPropertyProfile.profile.makeDefault" bundle="navigation" /> 
							<html:checkbox property="makeDefault"/>
						</td>
					</tr>
				</tbody>
				<tfoot>
					<tr>
						<td colspan="2">							
							<div class="button_bar">
								<div class="formButton">	
									<input class="ok" type="submit" value="<bean:message key='selectPropertyProfile.select.label' bundle='navigation'/>"/>
								</div>		
								<div class="formButton">
									<logic:notEmpty name="profileSelectionForm" property="referer">
										<input class="cancel" onclick="<%= "self.location = '" + ((CoreForm)request.getAttribute("profileSelectionForm")).getReferer() + "'" %>" type="button" value="<bean:message key='selectAuthenticationScheme.cancel' bundle='security'/>"/>
									</logic:notEmpty>							
									<logic:empty name="profileSelectionForm" property="referer">
										<input class="cancel" onclick="self.location = '/logoff.do'" type="button" value="<bean:message key='selectAuthenticationScheme.cancel' bundle='security'/>"/>
									</logic:empty>	
								</div>
							</div>
						</td>
					</tr>
				</tfoot>
			</table>
		</div>			
	</explorer:form>
</div>

⌨️ 快捷键说明

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