index.jsp
来自「JAVA做的J2EE下CA认证系统 基于EJB开发」· JSP 代码 · 共 30 行
JSP
30 行
<%@ page pageEncoding="ISO-8859-1"%><%@page errorPage="errorpage.jsp" import="se.anatom.ejbca.webdist.webconfiguration.EjbcaWebBean,se.anatom.ejbca.ra.raadmin.GlobalConfiguration, se.anatom.ejbca.webdist.webconfiguration.WebLanguages"%><html><jsp:useBean id="ejbcawebbean" scope="session" class="se.anatom.ejbca.webdist.webconfiguration.EjbcaWebBean" /><jsp:setProperty name="ejbcawebbean" property="*" /> <% // Initialize environment GlobalConfiguration globalconfiguration = ejbcawebbean.initialize(request,"/administrator"); %><head> <title><%= globalconfiguration.getEjbcaTitle() %></title> <base href="<%= ejbcawebbean.getBaseUrl() %>"> <link rel=STYLESHEET href="<%= ejbcawebbean.getCssFile() %>"> <meta http-equiv="Content-Type" content="text/html; charset=<%= ejbcawebbean.getDefaultContentEncoding() %>"></head><frameset rows="131,*" cols="*" frameborder="NO" border="0" framespacing="0"> <frame name="<%= globalconfiguration.HEADERFRAME %>" scrolling="NO" noresize src="<%= globalconfiguration.getHeadBanner() %>" > <frameset cols="217,*" frameborder="NO" border="0" framespacing="0" rows="*"> <frame name="<%= globalconfiguration.MENUFRAME %>" noresize scrolling="NO" src="<%= globalconfiguration.getAdminWebPath() + globalconfiguration.getMenuFilename() %>"> <frame name="<%= globalconfiguration.MAINFRAME %>" src="<%= globalconfiguration.getAdminWebPath() + globalconfiguration.getMainFilename() %>"> </frameset></frameset><noframes><body> <h1><%= ejbcawebbean.getText("ERRORNOBROWSER") %></h1></body></noframes></html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?