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

📄 popuplayout.jsp

📁 这是linux下ssl vpn的实现程序
💻 JSP
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@ page contentType="text/html;charset=UTF-8" language="java" %>

<%@ page import="java.io.StringWriter" %>
<%@ page import="java.io.PrintWriter" %>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="/sslexplorer/taglibs/explorer" prefix="explorer" %>
<%@ taglib uri="/sslexplorer/taglibs/navigation" prefix="navigation" %>
<%@ taglib uri="/sslexplorer/taglibs/security" prefix="security" %>

<bean:page id="sessionObj" property="session"/>
<bean:page id="requestObj" property="request"/> 

<% try { 
%>

<%@page import="com.sslexplorer.core.CoreScript"%>
<html>
	<bean:page id="sessionObj" property="session"/>
	<bean:page id="requestObj" property="request"/>
	<tiles:useAttribute ignore="true" name="resourcePrefix" scope="request" classname="java.lang.String"/> 
	<tiles:useAttribute ignore="true" name="resourceBundle" scope="request" classname="java.lang.String"/> 
	<tiles:useAttribute ignore="true" name="rssFeed" scope="request" classname="java.lang.String"/> 
	<tiles:useAttribute name="content" scope="request" classname="java.lang.String"/> 
	<tiles:useAttribute ignore="true" name="actionLink" scope="request" classname="java.lang.String"/> 	
	
	<tiles:insert flush="false" attribute="pageHeader">
		<tiles:put name="resourcePrefix" beanName="resourcePrefix"/>
		<tiles:put name="resourceBundle" beanName="resourceBundle"/>
	</tiles:insert>
	
	<body>
		<explorer:pageScripts/>
		<div id="layout_page" class="popup">
			<div id="layout_topbar">	
				<div id="component_smallPageHeader"/>		
			</div>
       		<div id="layout_center">
	       		<table cellpadding="0" border="0" cellspacing="0" id="layout_inner">
	       			<tr class="layout_row">
						<td id="layout_main">	
							<logic:notEqual name="info" value="">	
								<% try { %>
									<tiles:insert flush="false" attribute="info">
										<tiles:put name="resourcePrefix" beanName="resourcePrefix"/>
										<tiles:put name="resourceBundle" beanName="resourceBundle"/>
										<tiles:put name="messageArea" beanName="messageArea"/>
										<tiles:put name="infoImage" beanName="infoImage"/>
										<tiles:put name="displayGlobalWarnings" beanName="displayGlobalWarnings"/>
									</tiles:insert>
					
									<% } catch(Throwable infoException) {
										System.err.println("----> Error occured processing JSP info");
										infoException.printStackTrace();
										// May contain sensitive information
										// Util.dumpSessionAttributes(session);							
										// Util.dumpRequestAttributes(request);
										// Util.dumpRequestParameters(request);
										System.err.println("<---- End of JSP info error");
										StringWriter sw = new StringWriter();
										infoException.printStackTrace(new PrintWriter(sw));
										%> <pre> <%= sw.toString() %> </pre> <%
										} %>
							</logic:notEqual>
							<div id="layout_content">
							<% try { %>
										<tiles:insert attribute="content" flush="false">
											<tiles:put name="actionLink" beanName="actionLink"/>
										</tiles:insert>
					
									<% } catch(Throwable contentException) {
								System.err.println("----> Error occured processing JSP content");
								contentException.printStackTrace();
								System.err.println("<---- End of JSP content error");
								StringWriter sw = new StringWriter();
								contentException.printStackTrace(new PrintWriter(sw));
								%> <pre> <%= sw.toString() %> </pre> <%
								} %>
							</div>
						</td>
						<td id="layout_rightbar">							
							<logic:notEqual name="messageArea" value="">	
								<% try { %>
									<tiles:insert flush="false" attribute="messageArea">
										<tiles:put name="resourcePrefix" beanName="resourcePrefix"/>
										<tiles:put name="resourceBundle" beanName="resourceBundle"/>
										<tiles:put name="displayGlobalWarnings" beanName="displayGlobalWarnings"/>
										<tiles:put name="rssFeed" beanName="rssFeed"/>
									</tiles:insert>						
									<% } catch(Throwable infoException) {
										System.err.println("----> Error occured processing JSP info");
										infoException.printStackTrace();
										System.err.println("<---- End of JSP info error");
										StringWriter sw = new StringWriter();
										infoException.printStackTrace(new PrintWriter(sw));
										%> <pre> <%= sw.toString() %> </pre> <%
										} %>
							</logic:notEqual>
						</td>
					</tr>
				</table>
			</div>
		</div>
		<explorer:pageScripts position="<%= String.valueOf(CoreScript.BEFORE_BODY_END) %>"/>
	</body>
</html>

<% } catch(Throwable t) {
	System.err.println("----> Error occured processing JSP");
	t.printStackTrace();
	System.err.println("<---- End of JSP error");
	StringWriter sw = new StringWriter();
	t.printStackTrace(new PrintWriter(sw));
	%> <pre> <%= sw.toString() %> </pre> <%
	} %>

⌨️ 快捷键说明

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