?? img_panel.jsp
字號:
<%@ page contentType="text/html; charset=GBK" %>
<%@ page language="java" import="tour_lines.line"%>
<%@ page language="java" import="java.util.*"%>
<%@ page language="java" import="java.io.*"%>
<jsp:useBean id="j" scope="application" class="jdbc.jdbc"/>
<jsp:useBean id="s" scope="application" class="tour_lines.show_line"/>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body>
<FORM METHOD=POST ACTION="image_update.jsp">
<BR>
<table width="90%" border="1" cellspacing="0" bordercolor="#CCCCFF">
<tr>
<td>
<select name="tour_line_name">
<%
s.tour_line_name="";
s.con=j.getConnection();
Collection tcol=s.show();
Iterator it=tcol.iterator();
while(it.hasNext())
{
line li=(line)it.next();
%>
<option value=<%=li.getTour_line_name()%>><%=li.getTour_line_name()%></option>
<%
it.remove();
}
j.releaseConnection(s.con);
%>
</select>
</td>
</tr>
<tr>
<td><input type="file" name="filename"></td>
</tr>
<tr>
<td><div align="right">
<input name="提交圖片" type="submit">
</div></td>
</tr>
</table>
<BR>
<br>
</form>
</body>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -