?? view_line.asp
字號:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="chk.asp"-->
<!--#include file="db_conn.asp"-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
function ccc(a){
window.opener.form2.lineid.value=a;
alert("你已經選擇了ID為 "+a+" 的線路。\r\r按確定開始自動查詢,此窗口也將關閉!");
window.opener.form2.submit();
window.close();
}
</script>
<title>ID查詢</title>
<link rel="stylesheet" type="text/css" href="style_admin.css" />
</head>
<body>
<font color="#FF6600"> 提示:</font><font color="#808080">無需記住線路ID,只要點擊相應線路既可</font><div align="center">
<table width="98%">
<tr align="center" bgcolor="#f5f5f5">
<td height="24" class="top_td">ID號</td>
<td class="top_td">線路名稱</td>
</tr>
<%
set rs=conn.execute("select id,zm_linename from ssort_lines")
while not rs.eof
%>
<tr bgcolor="#FFFFFF">
<td align="center"><%=rs("id")%></td>
<td><a style="cursor:hand" onClick="ccc(<%=rs("id")%>);"><%=rs("zm_linename")%></a></td>
</tr>
<%
rs.movenext
wend
closers(rs)
%>
</table>
</div>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -