<%@page import="com.amarsoft.awe.res.AppManager"%> <%@page import="com.amarsoft.awe.res.model.AppItem"%> <%@page contentType="text/html; charset=GBK"%> <%@ include file="/IncludeBegin.jsp"%> 欢迎页面
<% ArrayList appItemList = AppManager.getUserAppList(CurUser); int i=0; for (AppItem appItem:appItemList) { String newAppUrl = appItem.getUrl(); String sClassName = "snb snb_s_"+i; if(i==0){sClassName = "snb snb_selected";} if(newAppUrl != null && newAppUrl.length() > 1 ) { %>
<%=appItem.getDisplayName()%>
<% } i++; } %>
<%@ include file="/IncludeEnd.jsp"%>