结课作业第二天
<div id="tabContent1" style="display: block">
<form action="lineresult.jsp">
<table style="border-width: 0; width: 100%">
<tr>
<table border="1" style="border-left-color: aqua; border-bottom-color: aqua; width: 100%;border-top-style: solid; border-top-color: aqua; border-right-style: solid; border-left-style: solid; height: 250px; border-right-color: aqua; border-bottom-style: solid">
<tr align="center"><td align="center" colspan="2">线路查询结果:已为您列出此线路上的所有站点</td></tr>
<%
response.setContentType("text/html;charset=UTF-8");
ArrayList<String> s = (ArrayList<String>) request.getAttribute("routeLine");
for (int i = 0; i < s.size(); i++) {
%>
<tr>
<td align="center" bgcolor="#F5F5F5"><%=s.get(i)%></td>
</tr>
<%
}
%>
</table>
</td>
</tr>
<tr>