⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 qmadmin_station_info_list.asp

📁 公交查询系统
💻 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">过该站点的车:&nbsp;&nbsp;
<%for i=0 to Num%>
<a href="qmadmin_qmroute_info_List.asp?bus_name=<%=station_bus_new(i)%>"><%=station_bus_new(i)%></a>&nbsp;&nbsp;    
<%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 + -