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

📄 left.jsp

📁 这个是完整的wap项目的源码 开发语言 Java 系统架构 Struts + hibernate + spring 数据库 Mysql5.0 应用服务器Tomcat5.0 开发工具 MyEc
💻 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"> &nbsp;热点排行:</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"> &nbsp;推荐排行:</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 + -