topone.jsp~4~
来自「JAVA诚信网络购物中心源码」· JSP~4~ 代码 · 共 28 行
JSP~4~
28 行
<%@ page contentType="text/html; charset=gb2312" %>
<%@page import="java.sql.*"%>
<%@page import="java.util.*"%>
<%@page import="com.domain.LinkForm" %>
<jsp:useBean id="dao" scope="page" class="com.dao.LinkDao"/>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<%List list=dao.selectLink();%>
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td width="82%" height="143"><div align="center">网上电子商城 </div></td>
<td width="18%"><div align="center">
<table width="94%" height="100%" border="0" cellpadding="0" cellspacing="0" >
<%
for(int i=0;i<list.size();i++){
LinkForm form=(LinkForm)list.get(i);
%>
<tr>
<td width="34%">
</td>
<td width="66%" align="center"><%=form.getLinkName()%></td>
</tr>
<%}%>
</table>
</div></td>
</tr>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?