| 123456789101112131415161718192021222324252627282930313233343536 | <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><%@page import="java.util.*" %><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>统一认证管理</title><%@ include file="../jsp/common/base.jsp"%><%-- <link rel="stylesheet" type="text/css" href="${basePath}/css/bootstrap-cerulean.css" /> --%></head><body>	<table  class="out" border="0" cellspacing="0" cellpadding="0">		<%-- <tr class="top" valign="top">			 <td class="right">				<div class="icon">					<div>						欢迎:${username} 					</div><br>					<div>					</div>				</div>			</td>		</tr> --%>		<tr valign="top">			<td class="menu">				<div class="menu">	            	<div style="margin-left: 40px;margin-top:5px;margin-right: 40px;">	            		<jsp:include page="${id}" flush="true"></jsp:include>	            	</div>           		</div> 			</td>		</tr>	</table>		</body></html>
 |