📄 left.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ page import="com.longtime.wap.module.front.common.FrontConstant" %>
<%@ page import="java.util.List" %>
<%@ page import="com.longtime.wap.model.Information" %>
<table border="0" align="left" width="220px" class="TableFrontLogin">
<tr>
<td>
<jsp:include flush="true" page="/frame/jsp/userPanel.jsp"></jsp:include>
</td>
</tr>
<tr>
<td align="center">
<table border="1" width="200" cellspacing="0" cellpadding="6">
<th align="left"><img src="images/icon2.gif" width="19" height="10" align="right"> 热点排行:</th>
<tr>
<td>
<table width="100%" border="0" align="center">
<%
List hotTopviewInfos = (List)request.getAttribute(FrontConstant.HOT_TOPVIEW_INFOS);
for (int i = 0; i < hotTopviewInfos.size(); i ++) {
Information info = (Information)hotTopviewInfos.get(i);
%>
<tr>
<td><a href="informationDetail.do?method=getInformation&id=<%=info.getInformationId()%>">·<%=info.getTitle()%>...</a></td>
</tr>
<%
}
%>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr><td></td></tr>
<tr>
<td align="center">
<table border="1" width="200" cellspacing="0" cellpadding="6">
<th align="left"><img src="images/icon2.gif" width="19" height="10" align="right"> 推荐排行:</th>
<tr>
<td>
<table width="100%" border="0" align="center">
<%
List recommendTopviewInfos = (List)request.getAttribute(FrontConstant.RECOMMEND_TOPVIEW_INFOS);
for (int i = 0; i < recommendTopviewInfos.size(); i ++) {
Information info = (Information)recommendTopviewInfos.get(i);
%>
<tr>
<td><a href="informationDetail.do?method=getInformation&id=<%=info.getInformationId()%>">·<%=info.getTitle()%>...</a></td>
</tr>
<%
}
%>
</table>
</td>
</tr>
</table>
</td>
</tr>
<tr><td></td></tr>
</table>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -