?? admin_station_info_list.asp
字號:
<!-- #include file="../inc/config.asp" -->
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>公交站點信息</title>
</head>
<style type="text/css">
<!--
BODY {
FONT-SIZE: 12px; BACKGROUND: #ced7f7; SCROLLBAR-HIGHLIGHT-COLOR: buttonface; SCROLLBAR-SHADOW-COLOR: buttonface; SCROLLBAR-3DLIGHT-COLOR: buttonhighlight; SCROLLBAR-TRACK-COLOR: #eeeeee; FONT-FAMILY: "宋體", "Verdana", "Arial"; SCROLLBAR-DARKSHADOW-COLOR: buttonshadow
}
#td1{
font-size:12px;
text-align:left;
width:96%;
height:22px;
padding-top:5px;
color:#FF0000;
background-color:#FFF;
padding-left:100px;
padding-right:50px;
line-height:30px;
}
#td3{
text-align:center;
height:22px;
background-image:url(../images/qmadmin_bg_1.gif);
font-size:12px;
font-weight:bold;
padding-top:5px;
color:#FFF;
}
.class6{
border-bottom-width:1px;
border-right-width:1px;
border-left-width:1px;
border-top-width:1px;
}
-->
</style>
<%
station_id=request.QueryString("station_id")
sqlstr="select * from [Station] where qmstation_id="& station_id
rs.open sqlstr,conn,1,3
if not rs.eof then
station_name=rs("qmstation_name")
station_bus=rs("qmstation_bus")
station_addupdate=rs("qmstation_addupdate")
else
response.Write("數據庫出錯!")
end if
rs.close
station_bus_new=split(station_bus,"-")
Num=ubound(station_bus_new)
%>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0" style="border:1px #314D98 solid;">
<tr>
<td id="td3">站 點 詳 情</td>
</tr>
<tr>
<td id="td1">站點名稱:<%=station_name%></td>
</tr>
<td id="td1">過該站點的車:
<%for i=0 to Num%>
<a href="Admin_qmRoute_info_List.asp?bus_name=<%=station_bus_new(i)%>"><%=station_bus_new(i)%></a>
<%next%>
</td>
</tr>
<tr>
<td id="td1">最近更新時間:<%=station_addupdate%></td>
</tr>
<script language="javascript" type="text/javascript">
<!--
function Close_Windows(){
window.opener=null;
window.close();
}
-->
</script>
<tr>
<td align="center" bgcolor="#FFFFFF"><br><br><input type="button" onClick="Close_Windows()" value="關閉" class="class6"><br><br></td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -